Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
memtmpl6.C
blob: 9ce35abfc4eece1893a3d74313e9a00deab70afb [
file
] [
log
] [
blame
]
// PR c++/81866
template
<class>
struct
A
{
template
<class>
struct
C
;
template
<class>
struct
B
;
template
<
class
T
=
B
<int>
>
struct
C
{};
};
int
main
()
{
A
<int>
::
C
<>
ac
;
return
0
;
}