rt_gccstream/gcc/testsuite/obj-c++.dg/const-str-1.mm

25 lines
310 B
Plaintext

/* Test errors for constant strings. */
/* { dg-do compile } */
#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");
}