blob: b777fd9ca683da2984a6ce6513de7a4e931e9d01 [file] [log] [blame]
/* Test errors for constant strings. */
/* { dg-do compile } */
/* APPLE LOCAL constant cfstrings */
/* { dg-options "-fgnu-runtime -fno-constant-cfstrings" } */
#ifdef __cplusplus
extern void baz(...);
#endif
void foo()
{
baz(@"hiya"); /* { dg-error "annot find interface declaration" } */
}
@interface NXConstantString
{
void *isa;
char *str;
int len;
}
@end
void bar()
{
baz(@"howdah");
}