2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-08-30 08:54:35 +08:00
|
|
|
namespace A {
|
|
|
|
namespace B {
|
2014-03-22 05:54:25 +08:00
|
|
|
class C { }; // expected-note {{'A::B::C' declared here}}
|
2009-08-30 08:54:35 +08:00
|
|
|
struct S { };
|
|
|
|
union U { };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void f() {
|
2009-08-30 14:49:43 +08:00
|
|
|
A::B::i; // expected-error {{no member named 'i' in namespace 'A::B'}}
|
2010-03-10 19:27:22 +08:00
|
|
|
A::B::C::i; // expected-error {{no member named 'i' in 'A::B::C'}}
|
2009-08-30 14:49:43 +08:00
|
|
|
::i; // expected-error {{no member named 'i' in the global namespace}}
|
2009-08-30 08:54:35 +08:00
|
|
|
}
|
|
|
|
|
2009-08-30 15:09:50 +08:00
|
|
|
namespace B {
|
|
|
|
class B { };
|
|
|
|
}
|
|
|
|
|
|
|
|
void g() {
|
2014-03-22 05:54:25 +08:00
|
|
|
A::B::D::E; // expected-error-re {{no member named 'D' in namespace 'A::B'{{$}}}}
|
2013-10-19 08:05:00 +08:00
|
|
|
// FIXME: The typo corrections below should be suppressed since A::B::C
|
|
|
|
// doesn't have a member named D.
|
|
|
|
B::B::C::D; // expected-error {{no member named 'C' in 'B::B'; did you mean 'A::B::C'?}} \
|
2014-03-22 05:54:25 +08:00
|
|
|
// expected-error-re {{no member named 'D' in 'A::B::C'{{$}}}}
|
|
|
|
::C::D; // expected-error-re {{no member named 'C' in the global namespace{{$}}}}
|
2009-08-30 15:09:50 +08:00
|
|
|
}
|
|
|
|
|
2009-08-30 14:49:43 +08:00
|
|
|
int A::B::i = 10; // expected-error {{no member named 'i' in namespace 'A::B'}}
|
2010-03-10 19:27:22 +08:00
|
|
|
int A::B::C::i = 10; // expected-error {{no member named 'i' in 'A::B::C'}}
|
|
|
|
int A::B::S::i = 10; // expected-error {{no member named 'i' in 'A::B::S'}}
|
|
|
|
int A::B::U::i = 10; // expected-error {{no member named 'i' in 'A::B::U'}}
|
2009-08-30 08:54:35 +08:00
|
|
|
|
2009-08-30 14:49:43 +08:00
|
|
|
using A::B::D; // expected-error {{no member named 'D' in namespace 'A::B'}}
|
2009-08-30 08:58:45 +08:00
|
|
|
|
|
|
|
struct S : A::B::C {
|
2010-03-10 19:27:22 +08:00
|
|
|
using A::B::C::f; // expected-error {{no member named 'f' in 'A::B::C'}}
|
2009-08-30 08:58:45 +08:00
|
|
|
|
|
|
|
};
|