Richard Smith | 446161b | 2014-03-03 21:12:53 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -pedantic -fcxx-exceptions %s |
Sebastian Redl | f4485de | 2008-11-08 15:40:37 +0000 | [diff] [blame] | 2 | class C; |
Argyrios Kyrtzidis | 7bbb20e | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 3 | class C { |
| 4 | public: |
| 5 | protected: |
| 6 | typedef int A,B; |
| 7 | static int sf(), u; |
| 8 | |
| 9 | struct S {}; |
Douglas Gregor | aa8c972 | 2010-07-13 06:24:26 +0000 | [diff] [blame] | 10 | enum {}; // expected-warning{{declaration does not declare anything}} |
Douglas Gregor | f19ac0e | 2010-04-08 21:33:23 +0000 | [diff] [blame] | 11 | int; // expected-warning {{declaration does not declare anything}} |
Argyrios Kyrtzidis | f4ebe9e | 2008-06-28 08:10:48 +0000 | [diff] [blame] | 12 | int : 1, : 2; |
Argyrios Kyrtzidis | 7bbb20e | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 13 | |
| 14 | public: |
Richard Smith | 87f5dc5 | 2012-07-23 05:45:25 +0000 | [diff] [blame] | 15 | void m0() {}; // ok, one extra ';' is permitted |
| 16 | void m1() {} |
| 17 | ; // ok, one extra ';' is permitted |
Argyrios Kyrtzidis | 7bbb20e | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 18 | void m() { |
| 19 | int l = 2; |
Richard Smith | 87f5dc5 | 2012-07-23 05:45:25 +0000 | [diff] [blame] | 20 | };; // expected-warning{{extra ';' after member function definition}} |
Douglas Gregor | 8a4db83 | 2011-01-19 16:41:58 +0000 | [diff] [blame] | 21 | |
Richard Trieu | 2f7dc46 | 2012-05-16 19:04:59 +0000 | [diff] [blame] | 22 | template<typename T> void mt(T) { } |
Richard Smith | 87f5dc5 | 2012-07-23 05:45:25 +0000 | [diff] [blame] | 23 | ; |
Douglas Gregor | 8a4db83 | 2011-01-19 16:41:58 +0000 | [diff] [blame] | 24 | ; // expected-warning{{extra ';' inside a class}} |
| 25 | |
Sebastian Redl | f4485de | 2008-11-08 15:40:37 +0000 | [diff] [blame] | 26 | virtual int vf() const volatile = 0; |
Argyrios Kyrtzidis | 7bbb20e | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 27 | |
| 28 | private: |
| 29 | int x,f(),y,g(); |
Sebastian Redl | f4485de | 2008-11-08 15:40:37 +0000 | [diff] [blame] | 30 | inline int h(); |
| 31 | static const int sci = 10; |
Sebastian Redl | ccdfaba | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 32 | mutable int mi; |
Argyrios Kyrtzidis | 7bbb20e | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 33 | }; |
Sebastian Redl | f4485de | 2008-11-08 15:40:37 +0000 | [diff] [blame] | 34 | void glo() |
| 35 | { |
| 36 | struct local {}; |
| 37 | } |
Chris Lattner | d19c1c0 | 2008-12-18 01:12:00 +0000 | [diff] [blame] | 38 | |
| 39 | // PR3177 |
| 40 | typedef union { |
| 41 | __extension__ union { |
| 42 | int a; |
| 43 | float b; |
| 44 | } y; |
| 45 | } bug3177; |
| 46 | |
David Blaikie | eba32c2 | 2011-10-13 06:08:43 +0000 | [diff] [blame] | 47 | // check that we don't consume the token after the access specifier |
| 48 | // when it's not a colon |
| 49 | class D { |
| 50 | public // expected-error{{expected ':'}} |
| 51 | int i; |
| 52 | }; |
| 53 | |
| 54 | // consume the token after the access specifier if it's a semicolon |
| 55 | // that was meant to be a colon |
| 56 | class E { |
| 57 | public; // expected-error{{expected ':'}} |
| 58 | int i; |
| 59 | }; |
| 60 | |
Richard Trieu | 0d73054 | 2012-01-21 02:59:18 +0000 | [diff] [blame] | 61 | class F { |
| 62 | int F1 { return 1; } // expected-error{{function definition does not declare parameters}} |
| 63 | void F2 {} // expected-error{{function definition does not declare parameters}} |
| 64 | typedef int F3() { return 0; } // expected-error{{function definition declared 'typedef'}} |
| 65 | typedef void F4() {} // expected-error{{function definition declared 'typedef'}} |
| 66 | }; |
| 67 | |
Richard Smith | efd009d | 2012-03-27 00:56:56 +0000 | [diff] [blame] | 68 | namespace ctor_error { |
| 69 | class Foo {}; |
| 70 | // By [class.qual]p2, this is a constructor declaration. |
| 71 | Foo::Foo (F) = F(); // expected-error{{does not match any declaration in 'ctor_error::Foo'}} |
| 72 | |
| 73 | class Ctor { // expected-note{{not complete until the closing '}'}} |
| 74 | Ctor(f)(int); // ok |
| 75 | Ctor(g(int)); // ok |
| 76 | Ctor(x[5]); // expected-error{{incomplete type}} |
| 77 | |
| 78 | Ctor(UnknownType *); // expected-error{{unknown type name 'UnknownType'}} |
Richard Smith | 0191023 | 2012-03-29 01:46:00 +0000 | [diff] [blame] | 79 | void operator+(UnknownType*); // expected-error{{unknown type name 'UnknownType'}} |
Richard Smith | efd009d | 2012-03-27 00:56:56 +0000 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | Ctor::Ctor (x) = { 0 }; // \ |
| 83 | // expected-error{{qualified reference to 'Ctor' is a constructor name}} |
| 84 | |
Richard Smith | efd009d | 2012-03-27 00:56:56 +0000 | [diff] [blame] | 85 | Ctor::Ctor(UnknownType *) {} // \ |
Richard Smith | 0191023 | 2012-03-29 01:46:00 +0000 | [diff] [blame] | 86 | // expected-error{{unknown type name 'UnknownType'}} |
| 87 | void Ctor::operator+(UnknownType*) {} // \ |
| 88 | // expected-error{{unknown type name 'UnknownType'}} |
Richard Smith | efd009d | 2012-03-27 00:56:56 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Richard Smith | b1402ae | 2013-03-18 22:52:47 +0000 | [diff] [blame] | 91 | namespace nns_decl { |
| 92 | struct A { |
| 93 | struct B; |
| 94 | }; |
| 95 | namespace N { |
| 96 | union C; |
| 97 | } |
| 98 | struct A::B; // expected-error {{forward declaration of struct cannot have a nested name specifier}} |
| 99 | union N::C; // expected-error {{forward declaration of union cannot have a nested name specifier}} |
| 100 | } |
| 101 | |
Richard Smith | aa31b4b | 2012-09-06 01:37:56 +0000 | [diff] [blame] | 102 | // PR13775: Don't assert here. |
| 103 | namespace PR13775 { |
| 104 | class bar |
| 105 | { |
| 106 | public: |
| 107 | void foo (); |
| 108 | void baz (); |
| 109 | }; |
| 110 | void bar::foo () |
| 111 | { |
| 112 | baz x(); // expected-error 3{{}} |
| 113 | } |
| 114 | } |
| 115 | |
Serge Pavlov | 1de5151 | 2013-12-09 05:25:47 +0000 | [diff] [blame] | 116 | class pr16989 { |
| 117 | void tpl_mem(int *) { |
| 118 | return; |
| 119 | class C2 { |
| 120 | void f(); |
| 121 | }; |
| 122 | void C2::f() {} // expected-error{{function definition is not allowed here}} |
| 123 | }; |
| 124 | }; |
| 125 | |
Richard Smith | 446161b | 2014-03-03 21:12:53 +0000 | [diff] [blame] | 126 | namespace CtorErrors { |
| 127 | struct A { |
| 128 | A(NonExistent); // expected-error {{unknown type name 'NonExistent'}} |
| 129 | }; |
| 130 | struct B { |
| 131 | B(NonExistent) : n(0) {} // expected-error {{unknown type name 'NonExistent'}} |
| 132 | int n; |
| 133 | }; |
| 134 | struct C { |
| 135 | C(NonExistent) try {} catch (...) {} // expected-error {{unknown type name 'NonExistent'}} |
| 136 | }; |
| 137 | struct D { |
| 138 | D(NonExistent) {} // expected-error {{unknown type name 'NonExistent'}} |
| 139 | }; |
| 140 | } |
| 141 | |
Richard Smith | efa6f73 | 2014-09-06 02:06:12 +0000 | [diff] [blame] | 142 | namespace DtorErrors { |
Richard Smith | 64e033f | 2015-01-15 00:48:52 +0000 | [diff] [blame] | 143 | struct A { ~A(); int n; } a; |
| 144 | ~A::A() { n = 0; } // expected-error {{'~' in destructor name should be after nested name specifier}} expected-note {{previous}} |
Richard Smith | efa6f73 | 2014-09-06 02:06:12 +0000 | [diff] [blame] | 145 | A::~A() {} // expected-error {{redefinition}} |
| 146 | |
| 147 | struct B { ~B(); } *b; |
| 148 | DtorErrors::~B::B() {} // expected-error {{'~' in destructor name should be after nested name specifier}} |
| 149 | |
| 150 | void f() { |
| 151 | a.~A::A(); // expected-error {{'~' in destructor name should be after nested name specifier}} |
| 152 | b->~DtorErrors::~B::B(); // expected-error {{'~' in destructor name should be after nested name specifier}} |
| 153 | } |
Richard Smith | 64e033f | 2015-01-15 00:48:52 +0000 | [diff] [blame] | 154 | |
| 155 | struct C; // expected-note {{forward decl}} |
| 156 | ~C::C() {} // expected-error {{incomplete}} expected-error {{'~' in destructor name should be after nested name specifier}} |
| 157 | |
| 158 | struct D { struct X {}; ~D() throw(X); }; |
| 159 | ~D::D() throw(X) {} // expected-error {{'~' in destructor name should be after nested name specifier}} |
Nico Weber | d004586 | 2015-01-30 04:05:15 +0000 | [diff] [blame^] | 160 | |
| 161 | ~Undeclared::Undeclared() {} // expected-error {{use of undeclared identifier 'Undeclared'}} expected-error {{'~' in destructor name should be after nested name specifier}} |
Richard Smith | efa6f73 | 2014-09-06 02:06:12 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Richard Smith | 3d1a94c | 2014-08-12 00:22:39 +0000 | [diff] [blame] | 164 | namespace BadFriend { |
| 165 | struct A { |
| 166 | friend int : 3; // expected-error {{friends can only be classes or functions}} |
| 167 | friend void f() = 123; // expected-error {{illegal initializer}} |
| 168 | friend virtual void f(); // expected-error {{'virtual' is invalid in friend declarations}} |
| 169 | friend void f() final; // expected-error {{'final' is invalid in friend declarations}} |
| 170 | friend void f() override; // expected-error {{'override' is invalid in friend declarations}} |
| 171 | }; |
| 172 | } |
| 173 | |
Richard Smith | 95e1fb0 | 2014-08-27 03:23:12 +0000 | [diff] [blame] | 174 | class PR20760_a { |
| 175 | int a = ); // expected-warning {{extension}} expected-error {{expected expression}} |
| 176 | int b = }; // expected-warning {{extension}} expected-error {{expected expression}} |
| 177 | int c = ]; // expected-warning {{extension}} expected-error {{expected expression}} |
| 178 | }; |
| 179 | class PR20760_b { |
| 180 | int d = d); // expected-warning {{extension}} expected-error {{expected ';'}} |
| 181 | int e = d]; // expected-warning {{extension}} expected-error {{expected ';'}} |
| 182 | int f = d // expected-warning {{extension}} expected-error {{expected ';'}} |
| 183 | }; |
| 184 | |
Nico Weber | ef03e70 | 2014-09-10 00:59:37 +0000 | [diff] [blame] | 185 | namespace PR20887 { |
| 186 | class X1 { a::operator=; }; // expected-error {{undeclared identifier 'a'}} |
| 187 | class X2 { a::a; }; // expected-error {{undeclared identifier 'a'}} |
| 188 | } |
| 189 | |
Richard Smith | b1c217e | 2015-01-13 02:24:58 +0000 | [diff] [blame] | 190 | class BadExceptionSpec { |
| 191 | void f() throw(int; // expected-error {{expected ')'}} expected-note {{to match}} |
| 192 | void g() throw( // expected-note {{to match}} |
| 193 | int( // expected-note {{to match}} |
| 194 | ; // expected-error 2{{expected ')'}} expected-error {{unexpected end of exception specification}} |
| 195 | )); |
| 196 | }; |
| 197 | |
David Blaikie | eba32c2 | 2011-10-13 06:08:43 +0000 | [diff] [blame] | 198 | // PR11109 must appear at the end of the source file |
| 199 | class pr11109r3 { // expected-note{{to match this '{'}} |
| 200 | public // expected-error{{expected ':'}} expected-error{{expected '}'}} expected-error{{expected ';' after class}} |