blob: 6c6ae050cba0d2c43224dcd44d89d0d8799b8228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Test errors for constant strings. */
/* { dg-do compile } */
/* { dg-options "-fgnu-runtime" } */
int foo()
{
baz(@"hiya"); /* { dg-error "annot find interface declaration" } */
}
@interface NXConstantString
@end
int bar()
{
baz(@"howdah");
}
|