aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/static1.C
blob: 05429e18bb559438819daefe8cd7ab53d650b661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/6073
// This testcase ICEd because finish_struct_bits changed
// A's and const A's TYPE_MODE from QI to BLK, but did
// not change a's DECL_MODE because its mode was not
// TYPE_MAIN_VARIANT.

struct A
{
  static const A a;
  ~A ();
};

void bar (A x);
void foo ();

void
foo ()
{
  bar (A::a);
}