Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -std=c++98 -verify %s |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 2 | namespace A { |
| 3 | struct C { |
| 4 | static int cx; |
Douglas Gregor | 656de63 | 2009-03-11 23:52:16 +0000 | [diff] [blame] | 5 | |
| 6 | static int cx2; |
| 7 | |
| 8 | static int Ag1(); |
| 9 | static int Ag2(); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 10 | }; |
| 11 | int ax; |
| 12 | void Af(); |
| 13 | } |
| 14 | |
| 15 | A:: ; // expected-error {{expected unqualified-id}} |
Douglas Gregor | 9fa14a5 | 2009-03-06 19:06:37 +0000 | [diff] [blame] | 16 | ::A::ax::undef ex3; // expected-error {{expected a class or namespace}} expected-error {{invalid token after top level declarator}} |
| 17 | A::undef1::undef2 ex4; // expected-error {{no member named 'undef1'}} expected-error {{invalid token after top level declarator}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 18 | |
Douglas Gregor | 656de63 | 2009-03-11 23:52:16 +0000 | [diff] [blame] | 19 | int A::C::Ag1() { return 0; } |
| 20 | |
| 21 | static int A::C::Ag2() { return 0; } // expected-error{{'static' can not be specified on an out-of-line static member}} |
| 22 | |
| 23 | int A::C::cx = 17; |
| 24 | |
| 25 | |
| 26 | static int A::C::cx2 = 17; // expected-error{{'static' can not be specified on an out-of-line static member}} |
| 27 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 28 | class C2 { |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 29 | void m(); // expected-note{{member declaration nearly matches}} |
| 30 | |
| 31 | void f(const int& parm); // expected-note{{member declaration nearly matches}} |
| 32 | void f(int) const; // expected-note{{member declaration nearly matches}} |
| 33 | void f(float); |
| 34 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 35 | int x; |
| 36 | }; |
| 37 | |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 38 | void C2::m() const { } // expected-error{{out-of-line definition does not match any declaration in 'C2'}} |
| 39 | |
| 40 | void C2::f(int) { } // expected-error{{out-of-line definition does not match any declaration in 'C2'}} |
| 41 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 42 | void C2::m() { |
| 43 | x = 0; |
| 44 | } |
| 45 | |
| 46 | namespace B { |
Chris Lattner | 011bb4e | 2008-11-23 20:28:15 +0000 | [diff] [blame] | 47 | void ::A::Af() {} // expected-error {{definition or redeclaration of 'Af' not in a namespace enclosing 'A'}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | void f1() { |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 51 | void A::Af(); // expected-error {{definition or redeclaration of 'Af' not allowed inside a function}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | void f2() { |
| 55 | A:: ; // expected-error {{expected unqualified-id}} |
| 56 | A::C::undef = 0; // expected-error {{no member named 'undef'}} |
| 57 | ::A::C::cx = 0; |
| 58 | int x = ::A::ax = A::C::cx; |
| 59 | x = sizeof(A::C); |
| 60 | x = sizeof(::A::C::cx); |
| 61 | } |
| 62 | |
| 63 | A::C c1; |
| 64 | struct A::C c2; |
| 65 | struct S : public A::C {}; |
| 66 | struct A::undef; // expected-error {{'undef' does not name a tag member in the specified scope}} |
| 67 | |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 68 | namespace A2 { |
| 69 | typedef int INT; |
| 70 | struct RC; |
Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 71 | struct CC { |
| 72 | struct NC; |
| 73 | }; |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | struct A2::RC { |
| 77 | INT x; |
| 78 | }; |
| 79 | |
Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 80 | struct A2::CC::NC { |
| 81 | void m() {} |
| 82 | }; |
| 83 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 84 | void f3() { |
| 85 | N::x = 0; // expected-error {{use of undeclared identifier 'N'}} |
| 86 | int N; |
| 87 | N::x = 0; // expected-error {{expected a class or namespace}} |
| 88 | { int A; A::ax = 0; } |
Douglas Gregor | 3dde5a3 | 2008-12-16 06:37:47 +0000 | [diff] [blame] | 89 | { typedef int A; A::ax = 0; } // expected-error{{expected a class or namespace}} |
| 90 | { int A(); A::ax = 0; } |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 91 | { typedef A::C A; A::ax = 0; } // expected-error {{no member named 'ax'}} |
| 92 | { typedef A::C A; A::cx = 0; } |
| 93 | } |
Argyrios Kyrtzidis | 08b2c37 | 2008-11-19 15:22:16 +0000 | [diff] [blame] | 94 | |
| 95 | // make sure the following doesn't hit any asserts |
Chris Lattner | 28eb7e9 | 2008-11-23 23:17:07 +0000 | [diff] [blame] | 96 | void f4(undef::C); // expected-error {{use of undeclared identifier 'undef'}} // expected-error {{expected ')'}} expected-note {{to match this '('}} // expected-error {{variable has incomplete type 'void'}} |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 97 | |
| 98 | typedef void C2::f5(int); // expected-error{{typedef declarator cannot be qualified}} |
| 99 | |
| 100 | void f6(int A2::RC::x); // expected-error{{parameter declarator cannot be qualified}} |
| 101 | |
| 102 | int A2::RC::x; // expected-error{{non-static data member defined out-of-line}} |
| 103 | |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 104 | void A2::CC::NC::m(); // expected-error{{out-of-line declaration of a member must be a definition}} |
Douglas Gregor | 3dde5a3 | 2008-12-16 06:37:47 +0000 | [diff] [blame] | 105 | |
| 106 | |
| 107 | namespace E { |
| 108 | int X = 5; |
| 109 | |
| 110 | namespace Nested { |
| 111 | enum E { |
| 112 | X = 0 |
| 113 | }; |
| 114 | |
| 115 | void f() { |
| 116 | return E::X; // expected-error{{expected a class or namespace}} |
| 117 | } |
| 118 | } |
| 119 | } |
Douglas Gregor | 70316a0 | 2008-12-26 15:00:45 +0000 | [diff] [blame] | 120 | |
| 121 | |
| 122 | class Operators { |
| 123 | Operators operator+(const Operators&) const; // expected-note{{member declaration nearly matches}} |
| 124 | operator bool(); |
| 125 | }; |
| 126 | |
| 127 | Operators Operators::operator+(const Operators&) { // expected-error{{out-of-line definition does not match any declaration in 'Operators'}} |
| 128 | Operators ops; |
| 129 | return ops; |
| 130 | } |
| 131 | |
| 132 | Operators Operators::operator+(const Operators&) const { |
| 133 | Operators ops; |
| 134 | return ops; |
| 135 | } |
| 136 | |
| 137 | Operators::operator bool() { |
| 138 | return true; |
| 139 | } |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 140 | |
| 141 | namespace A { |
| 142 | void g(int&); // expected-note{{member declaration nearly matches}} |
| 143 | } |
| 144 | |
| 145 | void A::f() {} // expected-error{{out-of-line definition does not match any declaration in 'A'}} |
| 146 | |
| 147 | void A::g(const int&) { } // expected-error{{out-of-line definition does not match any declaration in 'A'}} |
| 148 | |
| 149 | struct Struct { }; |
| 150 | |
| 151 | void Struct::f() { } // expected-error{{out-of-line definition does not match any declaration in 'Struct'}} |
| 152 | |
| 153 | void global_func(int); |
| 154 | void global_func2(int); |
| 155 | |
| 156 | namespace N { |
| 157 | void ::global_func(int) { } // expected-error{{definition or redeclaration of 'global_func' cannot name the global scope}} |
| 158 | |
| 159 | void f(); |
| 160 | // FIXME: if we move this to a separate definition of N, things break! |
| 161 | } |
| 162 | void ::global_func2(int) { } // expected-error{{definition or redeclaration of 'global_func2' cannot name the global scope}} |
| 163 | |
| 164 | void N::f() { } // okay |
Douglas Gregor | 9fa14a5 | 2009-03-06 19:06:37 +0000 | [diff] [blame] | 165 | |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 166 | struct Y; // expected-note{{forward declaration of 'struct Y'}} |
| 167 | Y::foo y; // expected-error{{incomplete type 'struct Y' named in nested name specifier}} \ |
| 168 | // FIXME: ugly: expected-error{{invalid token after top level declarator}} |
| 169 | |
Douglas Gregor | 9fa14a5 | 2009-03-06 19:06:37 +0000 | [diff] [blame] | 170 | X::X() : a(5) { } // expected-error{{use of undeclared identifier 'X'}} \ |
Anders Carlsson | a7b3521 | 2009-03-25 02:58:17 +0000 | [diff] [blame] | 171 | // expected-error{{C++ requires a type specifier for all declarations}} \ |
| 172 | // expected-error{{only constructors take base initializers}} |