// RUN: %clang_cc1 -fsyntax-only -verify %s namespace N { namespace M { template struct Promote; template<> struct Promote { typedef int type; }; template<> struct Promote { typedef int type; }; template<> struct Promote { typedef double type; }; Promote::type *ret_intptr(int* ip) { return ip; } Promote::type *ret_intptr2(int* ip) { return ip; } } M::Promote::type *ret_intptr3(int* ip) { return ip; } M::template Promote::type *ret_intptr4(int* ip) { return ip; } } N::M::Promote::type *ret_intptr5(int* ip) { return ip; } ::N::M::Promote::type *ret_intptr6(int* ip) { return ip; } N::M::template; // expected-error{{expected unqualified-id}} N::M::template Promote; // expected-error{{expected unqualified-id}} namespace N { template struct A; template<> struct A { struct X; }; struct B; } struct ::N::A::X { int foo; }; template struct TestA { typedef typename N::template B::type type; // expected-error{{'B' following the 'template' keyword does not refer to a template}} \ // expected-error{{expected member name}} }; // Reduced from a Boost failure. namespace test1 { template struct pair { T x; T y; static T pair::* const mem_array[2]; }; template T pair::* const pair::mem_array[2] = { &pair::x, &pair::y }; } typedef int T; namespace N1 { template T f0(); } template T N1::f0() { }