blob: 5b611f6005f08fa1027bb261e30017d232fb769f [file] [log] [blame]
Steve Naroffb59212a2009-04-01 21:16:31 +00001// RUN: clang %s -verify -fsyntax-only
2@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");
9 // FIXME: the following is still not working (will investigate).
Steve Naroffb59212a2009-04-01 21:16:31 +000010 //NSLog(@"hello \u2192 \u2603 \u2190 world");
Steve Naroffb59212a2009-04-01 21:16:31 +000011 return 0;
12}
13