URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc.dg/] [const-str-1.m] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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"); }
Go to most recent revision | Compare with Previous | Blame | View Log