OSDN Git Service

PR c++/44157
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / enum7.C
1 // PR c++/37816
2 // { dg-options "-std=c++0x" }
3
4 class A
5 {
6   enum class Color { Red, Orange, Yellow, Green, Blue, Violet };
7   enum class Alert { Green, Yellow, Red };
8   static const Color x = Red;   // { dg-error "" }
9   static const Color y = Color::Red;
10   static const Alert z = Alert::Red;
11 };