Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / SemaObjC / ucn-objc-string.m
blob6070278bb134e9f6905b8dffa2a0bdbbe3bbc828
1 // RUN: %clang_cc1 %s -verify -fsyntax-only
2 @class NSString;
3 extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2)));
5 int main() {
6   NSLog(@"Hi…");
7   NSLog(@"Exposé");
8   NSLog(@"\U00010400\U0001D12B");
9   NSLog(@"hello \u2192 \u2603 \u2190 world");
10   NSLog(@"hello → ☃ ← world");
11   return 0;