* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr71665-2.C
blobaa6d9ad80b29644b29127483b58a3692c290c427
1 // PR c++/71665
2 // { dg-do compile { target c++11 } }
4 class A 
6   enum class E { e = 1 };
7   enum { a = E::e };  // { dg-error "integral or unscoped enumeration" }
8 };