blob: 145c1b31e844256fb4b480f084a6000196b1dacc (
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" } */
void foo()
{
baz(@"hiya"); /* { dg-error "annot find interface declaration" } */
}
@interface NXConstantString
@end
void bar()
{
baz(@"howdah");
}
|