Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / obj-c++.dg / const-str-1.mm
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");