blob: 15c284a103aa2a2c8acadd0c25b6a6db5ceb3f72 [file] [log] [blame]
/* APPLE LOCAL file mainline */
/* Test errors for constant strings. */
/* { dg-do compile } */
/* { dg-options "-fgnu-runtime -fno-constant-cfstrings" } */
/* { dg-skip-if "" { *-*-darwin* } { "-m64" } { "" } } */
#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");
}