summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/string.m
blob: 04f20ab1bcf158c4293278ae202be600a8c42328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 %s -verify -fsyntax-only
// RUN: %clang_cc1 %s -verify -fsyntax-only -DDECLAREIT

// a declaration of NSConstantString is not required.
#ifdef DECLAREIT
@interface NSConstantString;
@end
#endif



id s = @"123"; // simple
id t = @"123" @"456"; // concat
id u = @"123" @ blah; // expected-error {{unexpected token}}