Richard Smith | 762bb9d | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -verify -std=c++11 %s |
Nick Lewycky | ba5f6ec | 2010-04-24 01:30:46 +0000 | [diff] [blame] | 2 | // RUN: cp %s %t |
Richard Smith | 762bb9d | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 3 | // RUN: not %clang_cc1 -x c++ -std=c++11 -fixit %t |
| 4 | // RUN: %clang_cc1 -Wall -pedantic -x c++ -std=c++11 %t |
Douglas Gregor | 84fb9c0 | 2009-11-23 13:46:08 +0000 | [diff] [blame] | 5 | |
| 6 | /* This is a test of the various code modification hints that only |
| 7 | apply in C++0x. */ |
Nick Lewycky | ba5f6ec | 2010-04-24 01:30:46 +0000 | [diff] [blame] | 8 | struct A { |
Douglas Gregor | 84fb9c0 | 2009-11-23 13:46:08 +0000 | [diff] [blame] | 9 | explicit operator int(); // expected-note{{conversion to integral type}} |
| 10 | }; |
| 11 | |
Nick Lewycky | ba5f6ec | 2010-04-24 01:30:46 +0000 | [diff] [blame] | 12 | void x() { |
Douglas Gregor | 84fb9c0 | 2009-11-23 13:46:08 +0000 | [diff] [blame] | 13 | switch(A()) { // expected-error{{explicit conversion to}} |
| 14 | } |
| 15 | } |
| 16 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 17 | using ::T = void; // expected-error {{name defined in alias declaration must be an identifier}} |
| 18 | using typename U = void; // expected-error {{name defined in alias declaration must be an identifier}} |
| 19 | using typename ::V = void; // expected-error {{name defined in alias declaration must be an identifier}} |
Richard Smith | c6d990a | 2011-09-29 19:11:37 +0000 | [diff] [blame] | 20 | |
Richard Smith | 0706df4 | 2011-10-19 21:33:05 +0000 | [diff] [blame] | 21 | namespace SemiCommaTypo { |
| 22 | int m {}, |
| 23 | n [[]], // expected-error {{expected ';' at end of declaration}} |
| 24 | int o; |
| 25 | } |