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;
};
};