0075e2daa8bff9a05090c328b5158b675ac2c869
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / enum8.C
1 // PR c++/47704
2 // { dg-do compile }
3 // { dg-options "-std=c++0x" }
4
5 void
6 foo ()
7 {
8 enum class E { A, B };
9 new E;
10 }