Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:specifier

71                          // expected-warning {{'auto' type specifier is incompatible with C++98}}
104 auto ff() { return 5; } // expected-warning {{'auto' type specifier is incompatible with C++98}}
113 // expected-warning@-2 {{'auto' type specifier is incompatible with C++98}}
139 auto auto_deduction = 0; // expected-warning {{'auto' type specifier is incompatible with C++98}}
140 int *p = new auto(0); // expected-warning {{'auto' type specifier is incompatible with C++98}}
143 char16_t c16 = 0; // expected-warning {{'char16_t' type specifier is incompatible with C++98}}
144 char32_t c32 = 0; // expected-warning {{'char32_t' type specifier is incompatible with C++98}}
145 constexpr int const_expr = 0; // expected-warning {{'constexpr' specifier is incompatible with C++98}}
146 decltype(const_expr) decl_type = 0; // expected-warning {{'decltype' type specifier is incompatible with C++98}}
254 static constexpr double d = 0.0; // expected-warning {{static data member 'd' in union is incompatible with C++98}} expected-warning {{'constexpr' specifier is incompatible with C++98}}
260 int EnumNNS = Enum::enum_val; // expected-warning {{enumeration type in nested name specifier is incompatible with C++98}}
262 int k = T::enum_val; // expected-warning {{enumeration type in nested name specifier is incompatible with C++98}}