(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
forw_enum14.C
// PR c++/49604
// { dg-do compile { target c++11 } }

class MyTable {
public:
    enum Constants : unsigned;
};

enum MyTable::Constants : unsigned {
    LENGTH = 12,
};

int main()
{
    return MyTable::LENGTH;
}