Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-template7.C
blob: cec7b7bea2bee697866286b77e862191c64f908b [
file
] [
log
] [
blame
]
// PR c++/58725
// { dg-do compile { target c++11 } }
struct
A
{
template
<
int
=
0
>
struct
B
{
struct
C
{
int
x
=
0
;
double
y
=
x
;
}
c
;
};
};
int
main
()
{
A
::
B
<>();
}