aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/static16.C
blob: 6425814d05e535069e285e653f64c8412064b81d (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
// { dg-do run  }
// Test that we properly evaluate the object parameter when accessing static
// members.

struct A {
  static void f () {}
  static int i;
};

int A::i;

int c = 0;

A g ()
{
  ++c;
  return A();
}

int main ()
{
  g().f();
  g().i = 42;
  return (c != 2);
}