Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:Literals

28 void Literals() {
29 (void)u8"str"; // expected-warning {{unicode literals are incompatible with C++98}}
30 (void)u"str"; // expected-warning {{unicode literals are incompatible with C++98}}
31 (void)U"str"; // expected-warning {{unicode literals are incompatible with C++98}}
32 (void)u'x'; // expected-warning {{unicode literals are incompatible with C++98}}
33 (void)U'x'; // expected-warning {{unicode literals are incompatible with C++98}}
35 (void)u8R"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
36 (void)uR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
37 (void)UR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
38 (void)R"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}
39 (void)LR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}}