Larisse Voufo | 539470e | 2013-06-15 20:17:46 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -std=c++1y -DCXX1Y -Wc++98-compat-pedantic -verify %s -DCXX1Y2 |
| 2 | // RUN: %clang_cc1 -fsyntax-only -std=c++1y -DCXX1Y -Wc++98-compat -Werror %s -DCXX1Y2 |
Richard Smith | 661a996 | 2011-10-15 01:18:56 +0000 | [diff] [blame] | 3 | // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wc++98-compat-pedantic -verify %s |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 4 | // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wc++98-compat -Werror %s |
Richard Smith | 661a996 | 2011-10-15 01:18:56 +0000 | [diff] [blame] | 5 | // RUN: %clang_cc1 -fsyntax-only -std=c++98 -Werror %s |
| 6 | |
Larisse Voufo | 539470e | 2013-06-15 20:17:46 +0000 | [diff] [blame] | 7 | // RUN: %clang_cc1 -fsyntax-only -std=c++1y -Wc++98-compat-pedantic -verify %s -Wno-c++98-c++11-compat-pedantic -DCXX1Y2 |
Richard Smith | 24ce46c | 2013-05-17 03:11:25 +0000 | [diff] [blame] | 8 | |
Richard Smith | 661a996 | 2011-10-15 01:18:56 +0000 | [diff] [blame] | 9 | // -Wc++98-compat-pedantic warns on C++11 features which we accept without a |
| 10 | // warning in C++98 mode. |
| 11 | |
| 12 | #line 32767 // ok |
| 13 | #line 32768 // expected-warning {{#line number greater than 32767 is incompatible with C++98}} |
| 14 | |
| 15 | #define VA_MACRO(x, ...) x // expected-warning {{variadic macros are incompatible with C++98}} |
Richard Smith | 9f728cd | 2012-06-22 23:59:08 +0000 | [diff] [blame] | 16 | VA_MACRO(,x) // expected-warning {{empty macro arguments are incompatible with C++98}} |
Richard Smith | 7fe6208 | 2011-10-15 05:09:34 +0000 | [diff] [blame] | 17 | |
| 18 | ; // expected-warning {{extra ';' outside of a function is incompatible with C++98}} |
| 19 | |
| 20 | enum Enum { |
| 21 | Enum_value, // expected-warning {{commas at the end of enumerator lists are incompatible with C++98}} |
| 22 | }; |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 23 | |
| 24 | template<typename T> struct InstantiationAfterSpecialization {}; |
| 25 | template<> struct InstantiationAfterSpecialization<int> {}; // expected-note {{here}} |
| 26 | template struct InstantiationAfterSpecialization<int>; // expected-warning {{explicit instantiation of 'InstantiationAfterSpecialization<int>' that occurs after an explicit specialization is incompatible with C++98}} |
| 27 | |
| 28 | void *dlsym(); |
| 29 | void (*FnPtr)() = (void(*)())dlsym(); // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}} |
| 30 | void *FnVoidPtr = (void*)&dlsym; // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}} |
| 31 | |
| 32 | struct ConvertToInt { |
| 33 | operator int(); |
| 34 | }; |
Larisse Voufo | 539470e | 2013-06-15 20:17:46 +0000 | [diff] [blame] | 35 | int *ArraySizeConversion = new int[ConvertToInt()]; |
| 36 | #ifdef CXX1Y2 |
Larisse Voufo | 0bb5199 | 2013-06-18 01:27:47 +0000 | [diff] [blame^] | 37 | // expected-warning@-2 {{implicit conversion from array size expression of type 'ConvertToInt' to integral type 'size_t' is incompatible with C++98}} |
Larisse Voufo | 539470e | 2013-06-15 20:17:46 +0000 | [diff] [blame] | 38 | #else |
| 39 | // expected-warning@-4 {{implicit conversion from array size expression of type 'ConvertToInt' to integral type 'int' is incompatible with C++98}} |
| 40 | #endif |
Richard Smith | 9324583 | 2011-10-20 18:35:58 +0000 | [diff] [blame] | 41 | |
| 42 | template<typename T> class ExternTemplate {}; |
| 43 | extern template class ExternTemplate<int>; // expected-warning {{extern templates are incompatible with C++98}} |
Dmitri Gribenko | e3b136b | 2012-09-24 18:19:21 +0000 | [diff] [blame] | 44 | |
| 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}} |
| 49 | |
Richard Smith | 2fcf0de | 2013-04-19 20:47:20 +0000 | [diff] [blame] | 50 | int k = 0b1001; |
| 51 | #ifdef CXX1Y |
| 52 | // expected-warning@-2 {{binary integer literals are incompatible with C++ standards before C++1y}} |
| 53 | #endif |
Richard Smith | 39b0e26 | 2013-04-20 23:28:26 +0000 | [diff] [blame] | 54 | |
| 55 | void f(int n) { int a[n]; } |
| 56 | #ifdef CXX1Y |
| 57 | // expected-warning@-2 {{arrays of runtime bound are incompatible with C++ standards before C++1y}} |
| 58 | #endif |