Lines Matching full:literals
31 void Literals() {
32 (void)u8"str"; // expected-warning {{unicode literals are incompatible with C++98}}
33 (void)u"str"; // expected-warning {{unicode literals are incompatible with C++98}}
34 (void)U"str"; // expected-warning {{unicode literals are incompatible with C++98}}
35 (void)u'x'; // expected-warning {{unicode literals are incompatible with C++98}}
36 (void)U'x'; // expected-warning {{unicode literals are incompatible with C++98}}
38 (void)u8R"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
39 (void)uR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
40 (void)UR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
41 (void)R"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
42 (void)LR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}