Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
template-keyword3.C
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
;
}