blob: e14d3b15c19757dad063efc45ac5376cb4c3411f [file] [log] [blame]
Argyrios Kyrtzidis560624a2008-07-04 10:33:02 +00001// RUN: clang %s -verify -fsyntax-only &&
Chris Lattner6ee1f9c2008-06-21 20:20:39 +00002// RUN: clang %s -verify -fsyntax-only -DDECLAREIT
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00003
Chris Lattner6ee1f9c2008-06-21 20:20:39 +00004// a declaration of NSConstantString is not required.
5#ifdef DECLAREIT
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00006@interface NSConstantString;
7@end
Chris Lattner6ee1f9c2008-06-21 20:20:39 +00008#endif
Chris Lattnerb3a99cd2007-12-12 01:04:12 +00009
10
11
Chris Lattner6ee1f9c2008-06-21 20:20:39 +000012id s = @"123"; // simple
13id t = @"123" @"456"; // concat
Chris Lattner0947b4e2008-11-24 01:28:17 +000014id u = @"123" @ blah; // expected-error {{unexpected token}}
Chris Lattnerb3a99cd2007-12-12 01:04:12 +000015