Lines Matching full:incompatible

13 #line 32768 // expected-warning {{#line number greater than 32767 is incompatible with C++98}}
15 #define VA_MACRO(x, ...) x // expected-warning {{variadic macros are incompatible with C++98}}
16 VA_MACRO(,x) // expected-warning {{empty macro arguments are incompatible with C++98}}
18 ; // expected-warning {{extra ';' outside of a function is incompatible with C++98}}
21 …Enum_value, // expected-warning {{commas at the end of enumerator lists are incompatible with C++9…
26 …AfterSpecialization<int>' that occurs after an explicit specialization is incompatible with C++98}}
29 …ected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
30 …ected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
37 …array size expression of type 'ConvertToInt' to integral type 'size_t' is incompatible with C++98}}
39 …om array size expression of type 'ConvertToInt' to integral type 'int' is incompatible with C++98}}
43 extern template class ExternTemplate<int>; // expected-warning {{extern templates are incompatible
45 long long ll1 = // expected-warning {{'long long' is incompatible with C++98}}
46 -42LL; // expected-warning {{'long long' is incompatible with C++98}}
47 unsigned long long ull1 = // expected-warning {{'long long' is incompatible with C++98}}
48 42ULL; // expected-warning {{'long long' is incompatible with C++98}}
52 // expected-warning@-2 {{binary integer literals are incompatible with C++ standards before C++14}}