2 // { dg-do compile { target c++11 } }
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;