aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/enum1.C
blob: aa5c976acccf7666b274ef09b8b26e8907455e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/6037
// This testcase ICEd because start_enum expected pushtag to insert
// the tag always into current binding level.

struct A
{
  ~A () { }
};

struct B
{
  void foo ()
  {
    switch (0) { default: ; }
    A a;
    enum C { };
    (void) a;
  }
};