Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
no-typename1.C
blob: f40ea0ec13c18d62640406b282257ae23a39a20e [
file
] [
log
] [
blame
]
// PR c++/4903
// Origin: Dan Marinescu <theverylittleone@hotmail.com>
// { dg-do compile }
template
<
typename
T
>
struct
A
{
template
<
typename
U
>
struct
B
{
A
<
T
>::
template
B
<
U
>
foo
();
};
};