diff options
Diffstat (limited to 'clang/test/CodeGenObjC/illegal-UTF8.m')
-rw-r--r-- | clang/test/CodeGenObjC/illegal-UTF8.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/CodeGenObjC/illegal-UTF8.m b/clang/test/CodeGenObjC/illegal-UTF8.m new file mode 100644 index 0000000..4762e80 --- /dev/null +++ b/clang/test/CodeGenObjC/illegal-UTF8.m @@ -0,0 +1,6 @@ +// RUN: %clang %s -S -m64 -o - + +@class NSString; + + +NSString *S = @"\xff\xff___WAIT___"; // expected-warning {{input conversion stopped due to an input byte that does not belong to the input codeset UTF-8}} |