2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / enum7.C
blob6788f8accc80a4cf37573526052749191a98f1e4
1 // PR c++/37816
2 // { dg-do compile { target c++11 } }
4 class A
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;