blob: 8a6f913d215be4c445fe5f40dc613627984478ae [file] [log] [blame]
// PR c++/58760
// { dg-do compile { target c++11 } }
enum en
{
a,b,c
};
struct B
{
template<en N>
struct A
{
const int X = N;
};
};