// { dg-options "" } template class A { public: static const EnumType size = max; // { dg-error "" } int table[size]; // { dg-error "constant" } }; template const EnumType A::size; namespace N { enum E { max = 5 }; struct B { A a; }; } int main() { N::B b; return 0; }