blob: 73316457b18f9267e0a9552cad1cfa6f8d9a3e74 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -verify -std=c++11 %s
Nick Lewyckyba5f6ec2010-04-24 01:30:46 +00002// RUN: cp %s %t
Richard Smith762bb9d2011-10-13 22:29:44 +00003// RUN: not %clang_cc1 -x c++ -std=c++11 -fixit %t
4// RUN: %clang_cc1 -Wall -pedantic -x c++ -std=c++11 %t
Douglas Gregor84fb9c02009-11-23 13:46:08 +00005
6/* This is a test of the various code modification hints that only
7 apply in C++0x. */
Nick Lewyckyba5f6ec2010-04-24 01:30:46 +00008struct A {
Douglas Gregor84fb9c02009-11-23 13:46:08 +00009 explicit operator int(); // expected-note{{conversion to integral type}}
10};
11
Nick Lewyckyba5f6ec2010-04-24 01:30:46 +000012void x() {
Douglas Gregor84fb9c02009-11-23 13:46:08 +000013 switch(A()) { // expected-error{{explicit conversion to}}
14 }
15}
16
Richard Smith162e1c12011-04-15 14:24:37 +000017using ::T = void; // expected-error {{name defined in alias declaration must be an identifier}}
18using typename U = void; // expected-error {{name defined in alias declaration must be an identifier}}
19using typename ::V = void; // expected-error {{name defined in alias declaration must be an identifier}}
Richard Smithc6d990a2011-09-29 19:11:37 +000020
21namespace Constexpr {
22 extern constexpr int a; // expected-error {{must be a definition}}
23 // -> extern const int a;
24
25 extern constexpr int *b; // expected-error {{must be a definition}}
26 // -> extern int *const b;
27
28 extern constexpr int &c; // expected-error {{must be a definition}}
29 // -> extern int &b;
30
31 extern constexpr const int d; // expected-error {{must be a definition}}
32 // -> extern const int d;
33
34 int z;
35 constexpr int a = 0;
36 constexpr int *b = &z;
37 constexpr int &c = z;
38 constexpr int d = a;
39
40 // FIXME: Provide FixIts for static data members too.
41#if 0
42 struct S {
Richard Smithc6d990a2011-09-29 19:11:37 +000043 static constexpr int b; // xpected-error {{requires an initializer}}
44 // -> const int b;
45 };
46
Richard Smithc6d990a2011-09-29 19:11:37 +000047 constexpr int S::b = 0;
48#endif
49
50 struct S {
Richard Smith947be192011-09-29 23:18:34 +000051 static char *const p = 0; // expected-error {{requires 'constexpr' specifier}}
Richard Smithc6d990a2011-09-29 19:11:37 +000052 // -> constexpr static char *const p = 0;
53 };
54}