2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc.dg / const-str-1.m
blobe4cac2e57ecdf7702acefbf75311892e33a855e5
1 /* Test errors for constant strings.  */
2 /* { dg-do compile } */
3 /* { dg-options "-fgnu-runtime" } */
5 #ifdef __cplusplus
6 extern void baz(...);
7 #endif
9 void foo()
11   baz(@"hiya");  /* { dg-error "annot find interface declaration" } */
14 @interface NXConstantString
16   void *isa;
17   char *str;
18   int len;
20 @end
22 void bar()
24   baz(@"howdah");