Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
ttp20.C
blob: 0d1784c9f82ca74128c0e44198b98892443aa2b8 [
file
] [
log
] [
blame
]
// PR c++/27424
// Bug: failing to substitute the 'int' into C
template
<
typename
T
>
struct
A
{
template
<
template
<
T
>
class
>
struct
B
{};
template
<
T
>
struct
C
;
B
<
C
>
b
;
};
A
<int>
a
;