URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc.dg/] [const-str-1.m] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test errors for constant strings. */ /* { dg-do compile } */ /* { dg-options "-fgnu-runtime" } */ #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"); }
Go to most recent revision | Compare with Previous | Blame | View Log