summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/special/conpr-2a.cc
blob: 69fb7d648319f5cd115e5c077d784750c10f08f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do run } */

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

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