diff options
Diffstat (limited to 'test/CXX/lex/lex.literal/lex.ext/p12.cpp')
-rw-r--r-- | test/CXX/lex/lex.literal/lex.ext/p12.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CXX/lex/lex.literal/lex.ext/p12.cpp b/test/CXX/lex/lex.literal/lex.ext/p12.cpp index dad4680..34a2f5c 100644 --- a/test/CXX/lex/lex.literal/lex.ext/p12.cpp +++ b/test/CXX/lex/lex.literal/lex.ext/p12.cpp @@ -15,7 +15,7 @@ void *operator""_x(const char*); // #2 void *a = 123_x; // ok, calls #2 int b = u8"\"ัะตัั ๐"_x; // ok, calls #1 int c = u8R"("ัะตัั ๐)"_x; // ok, calls #1 -int d = "test"_x; // expected-note {{in instantiation of function template specialization 'operator "" _x<char, 't', 'e', 's', 't'>' requested here}} +int d = "test"_x; // expected-note {{in instantiation of function template specialization 'operator""_x<char, 't', 'e', 's', 't'>' requested here}} int e = uR"("ัะตัั ๐)"_x; int f = UR"("ัะตัั ๐)"_x; -int g = UR"("ัะตัั_๐)"_x; // expected-note {{in instantiation of function template specialization 'operator "" _x<char32_t, 34, 1090, 1077, 1089, 1090, 95, 65536>' requested here}} +int g = UR"("ัะตัั_๐)"_x; // expected-note {{in instantiation of function template specialization 'operator""_x<char32_t, 34, 1090, 1077, 1089, 1090, 95, 65536>' requested here}} |