// Build don't link: // // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 19 Jan 2001 // Bug 1656. We failed to make sure that a template-id was built // from a primary template. template struct Outer { struct Inner {}; void f() { Inner i; // ERROR - non-template Inner<> j; // ERROR - non-template } }; struct O {}; void foo () { Outer<1> x; x.f (); Outer<1>::Inner<2> z; // ERROR - non-template O<1> w; // ERROR - non-template } template class TPL> struct X { TPL t; T s; // ERROR - non-template }; template struct Y { }; void bar () { X a; X b; // ERROR - non-template }