diff options
author | Steve Naroff <snaroff@apple.com> | 2009-04-03 01:25:18 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-04-03 01:25:18 +0000 |
commit | 2d06612aa13a0e9bba61da34f5ab05a493352a8e (patch) | |
tree | 4fc86df7ca3635a3f3f842bca8fffe35c40fa908 | |
parent | a9668e0b4c451a1021fe650c451b54dc98c2d18d (diff) |
Tweak test (now that http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20090330/015001.html is fixed).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68364 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaObjC/ucn-objc-string.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/ucn-objc-string.m b/test/SemaObjC/ucn-objc-string.m index 5b611f6005..1d94ea2363 100644 --- a/test/SemaObjC/ucn-objc-string.m +++ b/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; } |