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