diff options
-rw-r--r-- | clang/test/SemaObjC/ucn-objc-string.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/ucn-objc-string.m b/clang/test/SemaObjC/ucn-objc-string.m index 5b611f6005f..1d94ea2363a 100644 --- a/clang/test/SemaObjC/ucn-objc-string.m +++ b/clang/test/SemaObjC/ucn-objc-string.m @@ -6,8 +6,8 @@ int main() { NSLog(@"Hi…"); NSLog(@"Exposé"); NSLog(@"\U00010400\U0001D12B"); - // FIXME: the following is still not working (will investigate). - //NSLog(@"hello \u2192 \u2603 \u2190 world"); + NSLog(@"hello \u2192 \u2603 \u2190 world"); + NSLog(@"hello → ☃ ← world"); return 0; } |