Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-template4.C
blob: ff8dc7e932bc9d137ec1f9f422f575c1b412e2ae [
file
] [
log
] [
blame
]
// PR c++/57887
// { dg-do compile { target c++11 } }
struct
B
{
template
<
int
N
>
struct
A
{
int
X
=
N
;
};
};
template
<
int
M
>
struct
C
{
int
Y
=
M
;
template
<
int
N
>
struct
A
{
int
X
=
N
;
int
Y
=
M
;
};
};