Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
injected2.C
blob: bd09ccc3553e102c84ff3e6d8090faedd81228e2 [
file
] [
log
] [
blame
]
// DR 1004
template
<
class
T
,
template
<class>
class
U
=
T
::
template
B
>
struct
A
{
};
template
<
class
T
>
struct
B
{
template
<
class
U
>
friend
struct
B
;
};
A
<
B
<int>
>
a
;