aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/static5.C
blob: 1daca6d7194312eeea5147c95d34ef1c47e3ef60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// PR c++/31809
// { dg-do run }
// { dg-options "-O2" }

struct S
{
  unsigned v;
  static inline S f (unsigned a);
};

inline S
S::f (unsigned a)
{
  static S t = { a };
  return t;
}

const static S s = S::f (26);

extern "C" void abort (void);

int
main ()
{
  S t = s;
  if (t.v != 26)
    abort ();
  return 0;
}