blob: 6788f8accc80a4cf37573526052749191a98f1e4 [file] [log] [blame]
// PR c++/37816
// { dg-do compile { target c++11 } }
class A
{
enum class Color { Red, Orange, Yellow, Green, Blue, Violet };
enum class Alert { Green, Yellow, Red };
static const Color x = Red; // { dg-error "" }
static const Color y = Color::Red;
static const Alert z = Alert::Red;
};