Eli Friedman | a03c5ee | 2013-08-12 21:54:01 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -std=c++98 -verify -fblocks %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}} |
Jeffrey Yasskin | edc2877 | 2010-04-07 23:29:58 +0000 | [diff] [blame] | 16 | // FIXME: there is a member 'ax'; it's just not a class. |
| 17 | ::A::ax::undef ex3; // expected-error {{no member named 'ax'}} |
| 18 | A::undef1::undef2 ex4; // expected-error {{no member named 'undef1'}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 19 | |
Douglas Gregor | 656de63 | 2009-03-11 23:52:16 +0000 | [diff] [blame] | 20 | int A::C::Ag1() { return 0; } |
| 21 | |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 22 | static int A::C::Ag2() { return 0; } // expected-error{{'static' can}} |
Douglas Gregor | 656de63 | 2009-03-11 23:52:16 +0000 | [diff] [blame] | 23 | |
| 24 | int A::C::cx = 17; |
| 25 | |
| 26 | |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 27 | static int A::C::cx2 = 17; // expected-error{{'static' can}} |
Douglas Gregor | 656de63 | 2009-03-11 23:52:16 +0000 | [diff] [blame] | 28 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 29 | class C2 { |
Kaelyn Uhrain | 1055393 | 2011-10-10 18:01:37 +0000 | [diff] [blame] | 30 | void m(); // expected-note{{member declaration does not match because it is not const qualified}} |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 31 | |
Kaelyn Uhrain | 4d9d157 | 2011-08-04 17:40:00 +0000 | [diff] [blame] | 32 | void f(const int& parm); // expected-note{{type of 1st parameter of member declaration does not match definition ('const int &' vs 'int')}} |
Kaelyn Uhrain | 1055393 | 2011-10-10 18:01:37 +0000 | [diff] [blame] | 33 | void f(int) const; // expected-note{{member declaration does not match because it is const qualified}} |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 34 | void f(float); |
| 35 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 36 | int x; |
| 37 | }; |
| 38 | |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 39 | void C2::m() const { } // expected-error{{out-of-line definition of 'm' does not match any declaration in 'C2'}} |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 40 | |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 41 | void C2::f(int) { } // expected-error{{out-of-line definition of 'f' does not match any declaration in 'C2'}} |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 42 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 43 | void C2::m() { |
| 44 | x = 0; |
| 45 | } |
| 46 | |
| 47 | namespace B { |
Richard Smith | a1c4f7c | 2012-04-13 04:07:40 +0000 | [diff] [blame] | 48 | void ::A::Af() {} // expected-error {{cannot define or redeclare 'Af' here because namespace 'B' does not enclose namespace 'A'}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | void f1() { |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 52 | void A::Af(); // expected-error {{definition or redeclaration of 'Af' not allowed inside a function}} |
Eli Friedman | a03c5ee | 2013-08-12 21:54:01 +0000 | [diff] [blame] | 53 | void (^x)() = ^{ void A::Af(); }; // expected-error {{definition or redeclaration of 'Af' not allowed inside a block}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | void f2() { |
| 57 | A:: ; // expected-error {{expected unqualified-id}} |
| 58 | A::C::undef = 0; // expected-error {{no member named 'undef'}} |
| 59 | ::A::C::cx = 0; |
| 60 | int x = ::A::ax = A::C::cx; |
| 61 | x = sizeof(A::C); |
| 62 | x = sizeof(::A::C::cx); |
| 63 | } |
| 64 | |
| 65 | A::C c1; |
| 66 | struct A::C c2; |
| 67 | struct S : public A::C {}; |
Douglas Gregor | 1eabb7d | 2010-03-31 23:17:41 +0000 | [diff] [blame] | 68 | struct A::undef; // expected-error {{no struct named 'undef' in namespace 'A'}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 69 | |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 70 | namespace A2 { |
| 71 | typedef int INT; |
| 72 | struct RC; |
Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 73 | struct CC { |
| 74 | struct NC; |
| 75 | }; |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | struct A2::RC { |
| 79 | INT x; |
| 80 | }; |
| 81 | |
Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 82 | struct A2::CC::NC { |
| 83 | void m() {} |
| 84 | }; |
| 85 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 86 | void f3() { |
| 87 | N::x = 0; // expected-error {{use of undeclared identifier 'N'}} |
| 88 | int N; |
| 89 | N::x = 0; // expected-error {{expected a class or namespace}} |
| 90 | { int A; A::ax = 0; } |
Douglas Gregor | 3dde5a3 | 2008-12-16 06:37:47 +0000 | [diff] [blame] | 91 | { typedef int A; A::ax = 0; } // expected-error{{expected a class or namespace}} |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 92 | { typedef A::C A; A::ax = 0; } // expected-error {{no member named 'ax'}} |
| 93 | { typedef A::C A; A::cx = 0; } |
| 94 | } |
Argyrios Kyrtzidis | 08b2c37 | 2008-11-19 15:22:16 +0000 | [diff] [blame] | 95 | |
| 96 | // make sure the following doesn't hit any asserts |
Richard Smith | 0576681 | 2012-08-18 00:55:03 +0000 | [diff] [blame] | 97 | void f4(undef::C); // expected-error {{use of undeclared identifier 'undef'}} |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 98 | |
| 99 | typedef void C2::f5(int); // expected-error{{typedef declarator cannot be qualified}} |
| 100 | |
| 101 | void f6(int A2::RC::x); // expected-error{{parameter declarator cannot be qualified}} |
| 102 | |
| 103 | int A2::RC::x; // expected-error{{non-static data member defined out-of-line}} |
| 104 | |
Chandler Carruth | 34fa294 | 2010-07-16 05:46:45 +0000 | [diff] [blame] | 105 | 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] | 106 | |
| 107 | |
| 108 | namespace E { |
| 109 | int X = 5; |
| 110 | |
| 111 | namespace Nested { |
| 112 | enum E { |
| 113 | X = 0 |
| 114 | }; |
| 115 | |
Kaelyn Uhrain | ef094a1 | 2012-06-07 23:57:08 +0000 | [diff] [blame] | 116 | void f() { |
Douglas Gregor | 3dde5a3 | 2008-12-16 06:37:47 +0000 | [diff] [blame] | 117 | return E::X; // expected-error{{expected a class or namespace}} |
| 118 | } |
| 119 | } |
| 120 | } |
Douglas Gregor | 70316a0 | 2008-12-26 15:00:45 +0000 | [diff] [blame] | 121 | |
| 122 | |
| 123 | class Operators { |
Kaelyn Uhrain | 1055393 | 2011-10-10 18:01:37 +0000 | [diff] [blame] | 124 | Operators operator+(const Operators&) const; // expected-note{{member declaration does not match because it is const qualified}} |
Douglas Gregor | 70316a0 | 2008-12-26 15:00:45 +0000 | [diff] [blame] | 125 | operator bool(); |
| 126 | }; |
| 127 | |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 128 | Operators Operators::operator+(const Operators&) { // expected-error{{out-of-line definition of 'operator+' does not match any declaration in 'Operators'}} |
Douglas Gregor | 70316a0 | 2008-12-26 15:00:45 +0000 | [diff] [blame] | 129 | Operators ops; |
| 130 | return ops; |
| 131 | } |
| 132 | |
| 133 | Operators Operators::operator+(const Operators&) const { |
| 134 | Operators ops; |
| 135 | return ops; |
| 136 | } |
| 137 | |
| 138 | Operators::operator bool() { |
| 139 | return true; |
| 140 | } |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 141 | |
| 142 | namespace A { |
Kaelyn Uhrain | 4d9d157 | 2011-08-04 17:40:00 +0000 | [diff] [blame] | 143 | void g(int&); // expected-note{{type of 1st parameter of member declaration does not match definition ('int &' vs 'const int &')}} |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Kaelyn Uhrain | ef094a1 | 2012-06-07 23:57:08 +0000 | [diff] [blame] | 146 | void A::f() {} // expected-error-re{{out-of-line definition of 'f' does not match any declaration in namespace 'A'$}} |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 147 | |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 148 | void A::g(const int&) { } // expected-error{{out-of-line definition of 'g' does not match any declaration in namespace 'A'}} |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 149 | |
| 150 | struct Struct { }; |
| 151 | |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 152 | void Struct::f() { } // expected-error{{out-of-line definition of 'f' does not match any declaration in 'Struct'}} |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 153 | |
| 154 | void global_func(int); |
| 155 | void global_func2(int); |
| 156 | |
| 157 | namespace N { |
| 158 | void ::global_func(int) { } // expected-error{{definition or redeclaration of 'global_func' cannot name the global scope}} |
| 159 | |
| 160 | void f(); |
| 161 | // FIXME: if we move this to a separate definition of N, things break! |
| 162 | } |
Douglas Gregor | 7537945 | 2012-09-13 20:16:20 +0000 | [diff] [blame] | 163 | void ::global_func2(int) { } // expected-error{{extra qualification on member 'global_func2'}} |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 164 | |
| 165 | void N::f() { } // okay |
Douglas Gregor | 9fa14a5 | 2009-03-06 19:06:37 +0000 | [diff] [blame] | 166 | |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 167 | struct Y; // expected-note{{forward declaration of 'Y'}} |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 168 | Y::foo y; // expected-error{{incomplete type 'Y' named in nested name specifier}} |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 169 | |
Richard Smith | b79b17b | 2013-10-15 00:00:26 +0000 | [diff] [blame^] | 170 | X::X() : a(5) { } // expected-error{{use of undeclared identifier 'X'}} |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 171 | |
Argyrios Kyrtzidis | f37006b | 2009-07-21 06:43:26 +0000 | [diff] [blame] | 172 | struct foo_S { |
| 173 | static bool value; |
| 174 | }; |
| 175 | bool (foo_S::value); |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 176 | |
| 177 | |
| 178 | namespace somens { |
John McCall | 220ccbf | 2010-01-13 00:25:19 +0000 | [diff] [blame] | 179 | struct a { }; // expected-note{{candidate constructor (the implicit copy constructor)}} |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | template <typename T> |
| 183 | class foo { |
| 184 | }; |
| 185 | |
| 186 | |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 187 | // PR4452 / PR4451 |
| 188 | foo<somens:a> a2; // expected-error {{unexpected ':' in nested name specifier}} |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 189 | |
Douglas Gregor | 7abfbdb | 2009-12-19 03:01:41 +0000 | [diff] [blame] | 190 | somens::a a3 = a2; // expected-error {{no viable conversion}} |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 191 | |
John McCall | 1d7c528 | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 192 | // typedefs and using declarations. |
| 193 | namespace test1 { |
| 194 | namespace ns { |
John McCall | 7002f4c | 2010-04-09 19:03:51 +0000 | [diff] [blame] | 195 | class Counter { public: static int count; }; |
John McCall | 1d7c528 | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 196 | typedef Counter counter; |
| 197 | } |
| 198 | using ns::counter; |
Chris Lattner | c8e27cc | 2009-06-26 04:27:47 +0000 | [diff] [blame] | 199 | |
John McCall | 1d7c528 | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 200 | class Test { |
| 201 | void test1() { |
| 202 | counter c; |
| 203 | c.count++; |
| 204 | counter::count++; |
| 205 | } |
| 206 | }; |
| 207 | } |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 208 | |
| 209 | // We still need to do lookup in the lexical scope, even if we push a |
| 210 | // non-lexical scope. |
| 211 | namespace test2 { |
| 212 | namespace ns { |
Sebastian Redl | 78a527a | 2010-01-26 18:52:33 +0000 | [diff] [blame] | 213 | extern int *count_ptr; |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 214 | } |
| 215 | namespace { |
| 216 | int count = 0; |
| 217 | } |
| 218 | |
| 219 | int *ns::count_ptr = &count; |
| 220 | } |
John McCall | 4c72d3e | 2010-02-08 19:26:07 +0000 | [diff] [blame] | 221 | |
| 222 | // PR6259, invalid case |
| 223 | namespace test3 { |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 224 | class A; // expected-note {{forward declaration}} |
John McCall | 4c72d3e | 2010-02-08 19:26:07 +0000 | [diff] [blame] | 225 | void foo(const char *path) { |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 226 | A::execute(path); // expected-error {{incomplete type 'test3::A' named in nested name specifier}} |
John McCall | 4c72d3e | 2010-02-08 19:26:07 +0000 | [diff] [blame] | 227 | } |
| 228 | } |
Douglas Gregor | 00b4b03 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 229 | |
| 230 | namespace PR7133 { |
| 231 | namespace A { |
| 232 | class Foo; |
| 233 | } |
| 234 | |
| 235 | namespace A { |
| 236 | namespace B { |
| 237 | bool foo(Foo &); |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | bool A::B::foo(Foo &) { |
| 242 | return false; |
| 243 | } |
| 244 | } |
Francois Pichet | c71d8eb | 2010-10-01 21:19:28 +0000 | [diff] [blame] | 245 | |
| 246 | class CLASS { |
Douglas Gregor | 7537945 | 2012-09-13 20:16:20 +0000 | [diff] [blame] | 247 | void CLASS::foo2(); // expected-error {{extra qualification on member 'foo2'}} |
Francois Pichet | c71d8eb | 2010-10-01 21:19:28 +0000 | [diff] [blame] | 248 | }; |
Douglas Gregor | 922fff2 | 2010-10-13 22:19:53 +0000 | [diff] [blame] | 249 | |
| 250 | namespace PR8159 { |
| 251 | class B { }; |
| 252 | |
| 253 | class A { |
Douglas Gregor | 7537945 | 2012-09-13 20:16:20 +0000 | [diff] [blame] | 254 | int A::a; // expected-error{{extra qualification on member 'a'}} |
| 255 | static int A::b; // expected-error{{extra qualification on member 'b'}} |
Douglas Gregor | 922fff2 | 2010-10-13 22:19:53 +0000 | [diff] [blame] | 256 | int ::c; // expected-error{{non-friend class member 'c' cannot have a qualified name}} |
| 257 | }; |
| 258 | } |
Argyrios Kyrtzidis | 1de34dd | 2011-02-05 05:54:49 +0000 | [diff] [blame] | 259 | |
| 260 | namespace rdar7980179 { |
| 261 | class A { void f0(); }; // expected-note {{previous}} |
Richard Smith | 8ef1b37 | 2013-08-23 02:16:48 +0000 | [diff] [blame] | 262 | int A::f0() {} // expected-error {{return type of out-of-line definition of 'rdar7980179::A::f0' differs}} |
Argyrios Kyrtzidis | 1de34dd | 2011-02-05 05:54:49 +0000 | [diff] [blame] | 263 | } |
Douglas Gregor | fa0b48f | 2011-02-24 02:37:39 +0000 | [diff] [blame] | 264 | |
| 265 | namespace alias = A; |
| 266 | double *dp = (alias::C*)0; // expected-error{{cannot initialize a variable of type 'double *' with an rvalue of type 'alias::C *'}} |
Argyrios Kyrtzidis | a7bf7bb | 2011-06-24 19:59:27 +0000 | [diff] [blame] | 267 | |
| 268 | // http://llvm.org/PR10109 |
| 269 | namespace PR10109 { |
| 270 | template<typename T> |
| 271 | struct A { |
| 272 | protected: |
| 273 | struct B; |
| 274 | struct B::C; // expected-error {{requires a template parameter list}} \ |
Douglas Gregor | 42acead | 2012-03-17 23:06:31 +0000 | [diff] [blame] | 275 | // expected-error {{no struct named 'C'}} \ |
| 276 | // expected-error{{non-friend class member 'C' cannot have a qualified name}} |
Argyrios Kyrtzidis | a7bf7bb | 2011-06-24 19:59:27 +0000 | [diff] [blame] | 277 | }; |
| 278 | |
| 279 | template<typename T> |
| 280 | struct A2 { |
| 281 | protected: |
| 282 | struct B; |
| 283 | }; |
| 284 | template <typename T> |
| 285 | struct A2<T>::B::C; // expected-error {{no struct named 'C'}} |
| 286 | } |
Kaelyn Uhrain | 8d3607b | 2012-06-06 20:54:51 +0000 | [diff] [blame] | 287 | |
| 288 | namespace PR13033 { |
| 289 | namespace NS { |
| 290 | int a; // expected-note {{'NS::a' declared here}} |
| 291 | int longer_b; //expected-note {{'NS::longer_b' declared here}} |
| 292 | } |
| 293 | |
| 294 | // Suggest adding a namespace qualifier to both variable names even though one |
| 295 | // is only a single character long. |
| 296 | int foobar = a + longer_b; // expected-error {{use of undeclared identifier 'a'; did you mean 'NS::a'?}} \ |
| 297 | // expected-error {{use of undeclared identifier 'longer_b'; did you mean 'NS::longer_b'?}} |
| 298 | } |
Douglas Gregor | 86a8730 | 2013-05-14 23:22:32 +0000 | [diff] [blame] | 299 | |
| 300 | // <rdar://problem/13853540> |
| 301 | namespace N { |
| 302 | struct X { }; |
| 303 | namespace N { |
| 304 | struct Foo { |
| 305 | struct N::X *foo(); // expected-error{{no struct named 'X' in namespace 'N::N'}} |
| 306 | }; |
| 307 | } |
| 308 | } |
Eli Friedman | c02bea4 | 2013-06-19 22:58:30 +0000 | [diff] [blame] | 309 | |
| 310 | namespace TypedefNamespace { typedef int F; }; |
Eli Friedman | 94d22de | 2013-06-19 23:00:37 +0000 | [diff] [blame] | 311 | TypedefNamespace::F::NonexistentName BadNNSWithCXXScopeSpec; // expected-error {{expected a class or namespace}} |