aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/special/conpr-3b.cc
blob: b5efa0c35f68997318b96df8de8aa8fad8ffbf98 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do run } */

class foo_t {
    int x;
    static int count;
public:
    foo_t(void) { x=++count; }
    int get(void) { return x; }
};

foo_t foo2 __attribute__((init_priority(5000)));