f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
15 lines
335 B
Objective-C
15 lines
335 B
Objective-C
// 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}}
|
|
|