xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/string.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 %s -verify -fsyntax-only
2// RUN: %clang_cc1 %s -verify -fsyntax-only -DDECLAREIT
3
4// a declaration of NSConstantString is not required.
5#ifdef DECLAREIT
6@interface NSConstantString;
7@end
8#endif
9
10
11
12id s = @"123"; // simple
13id t = @"123" @"456"; // concat
14id u = @"123" @ blah; // expected-error {{unexpected token}}
15
16