// RUN: %clang_cc1 -fsyntax-only -verify %s template class X { public: struct C { T &foo(); }; struct D { struct E { T &bar(); }; // expected-error{{cannot form a reference to 'void'}} struct F; // expected-note{{member is declared here}} }; }; X::C *c1; X::C *c2; X::X *xi; // expected-error{{qualified reference to 'X' is a constructor name rather than a type wherever a constructor can be declared}} X::X *xf; // expected-error{{qualified reference to 'X' is a constructor name rather than a type wherever a constructor can be declared}} void test_naming() { c1 = c2; // expected-error{{incompatible type assigning 'X::C *', expected 'X::C *'}} xi = xf; // expected-error{{incompatible type assigning}} // FIXME: error above doesn't print the type X::X cleanly! } void test_instantiation(X::C *x, X::D::E *e, X::D::F *f) { double &dr = x->foo(); float &fr = e->bar(); f->foo(); // expected-error{{implicit instantiation of undefined member 'struct X::D::F'}} } X::C *c3; // okay X::D::E *e1; // okay X::D::E e2; // expected-note{{in instantiation of member class 'struct X::D::E' requested here}} // Redeclarations. namespace test1 { template struct Registry { class node; static node *Head; class node { node(int v) { Head = this; } }; }; void test() { Registry::node node(0); } }