The type of wide string literals varies depending on the target.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@355700
91177308-0d34-0410-b5e6-
96231b3b80d8
s = @(u8"abc");
s = @(u"abc"); // expected-error {{illegal type 'unsigned short *' used in a boxed expression}}
s = @(U"abc"); // expected-error {{illegal type 'unsigned int *' used in a boxed expression}}
- s = @(L"abc"); // expected-error-re {{illegal type {{'int \*'|'unsigned short \*'}} used in a boxed expression}}
+ s = @(L"abc"); // expected-error-re {{illegal type {{.*}} used in a boxed expression}}
s = @("\pabc"); // expected-error {{illegal type 'unsigned char *' used in a boxed expression}}
}