Lines Matching full:with
9 #line 32768 // expected-warning {{#line number greater than 32767 is incompatible with C++98}}
11 #define VA_MACRO(x, ...) x // expected-warning {{variadic macros are incompatible with C++98}}
12 VA_MACRO(,x) // expected-warning {{empty macro argument list is incompatible with C++98}}
14 ; // expected-warning {{extra ';' outside of a function is incompatible with C++98}}
17 Enum_value, // expected-warning {{commas at the end of enumerator lists are incompatible with C++98}}
22 template struct InstantiationAfterSpecialization<int>; // expected-warning {{explicit instantiation of 'InstantiationAfterSpecialization<int>' that occurs after an explicit specialization is incompatible with C++98}}
25 void (*FnPtr)() = (void(*)())dlsym(); // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
26 void *FnVoidPtr = (void*)&dlsym; // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
31 int *ArraySizeConversion = new int[ConvertToInt()]; // expected-warning {{implicit conversion from array size expression of type 'ConvertToInt' to integral type 'int' is incompatible with C++98}}
34 extern template class ExternTemplate<int>; // expected-warning {{extern templates are incompatible with C++98}}