aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/enum7.C
blob: 6788f8accc80a4cf37573526052749191a98f1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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;
};