diff options
Diffstat (limited to 'test/Parser/asm.cpp')
-rw-r--r-- | test/Parser/asm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Parser/asm.cpp b/test/Parser/asm.cpp index 35a497c..9f64dfe 100644 --- a/test/Parser/asm.cpp +++ b/test/Parser/asm.cpp @@ -6,3 +6,4 @@ int foo3 asm (u8"bar3"); // expected-error {{cannot use unicode string literal i int foo4 asm (u"bar4"); // expected-error {{cannot use unicode string literal in 'asm'}} int foo5 asm (U"bar5"); // expected-error {{cannot use unicode string literal in 'asm'}} int foo6 asm ("bar6"_x); // expected-error {{string literal with user-defined suffix cannot be used here}} +int foo6 asm ("" L"bar7"); // expected-error {{cannot use wide string literal in 'asm'}} |