Files
llvm-project/clang/test/SemaObjC/string.m
Chris Lattner 31236f8744 remove objc prefixes from these tests.
llvm-svn: 54085
2008-07-26 01:04:40 +00:00

16 lines
329 B
Objective-C

// RUN: clang %s -verify -fsyntax-only &&
// RUN: clang %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}}