blob: 91af2b3dc021f6953e344bafcb9405d676754a63 [file] [log] [blame]
// PR c++/96082
// { dg-do compile { target c++11 } }
template <class> class A {};
void
f ()
{
typename::template A <int> a;
::template A <int> a2;
}