Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
incomplete12.C
blob: 335e5356874dcad043f5f0e4f1062b1984e106b3 [
file
] [
log
] [
blame
]
// PR c++/96132
// { dg-do compile }
template
<int>
class
a
;
template
<
int
b
>
class
c
{
a
<b>
e
;
void
operator
=(
c d
)
{
e
=
d
;
}
};