blob: 7603199d0211aa2cd199adff92bc9c14d65c8281 [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 %s -verify -fsyntax-only
Steve Naroffb59212a2009-04-01 21:16:31 +00002@class NSString;
3extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2)));
4
5int main() {
6 NSLog(@"Hi…");
7 NSLog(@"Exposé");
Steve Narofffaa435a2009-04-01 21:27:56 +00008 NSLog(@"\U00010400\U0001D12B");
Steve Naroff2d066122009-04-03 01:25:18 +00009 NSLog(@"hello \u2192 \u2603 \u2190 world");
10 NSLog(@"hello → ☃ ← world");
Steve Naroffb59212a2009-04-01 21:16:31 +000011 return 0;
12}
13