Windows has a 16-bit wchar_t, most Unix platforms have a 32-bit wchar_t.
Use a char32_t to keep the test's output stable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@234111
91177308-0d34-0410-b5e6-
96231b3b80d8
const char *p10 = 3.300e+15_fritz;
template <class C, C...> const char *operator"" _suffix();
-// CHECK: const char *PR23120 = operator "" _suffix<wchar_t, 66615>();
-const char *PR23120 = L"𐐷"_suffix;
+// CHECK: const char *PR23120 = operator "" _suffix<char32_t, 66615>();
+const char *PR23120 = U"𐐷"_suffix;
// CHECK: ;
;