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