aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/special/conpr-2.C
blob: 07ba8ab9e89b1a1e283091059422dcc3d93fa72d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do run } */

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

int foo_t::count;

extern foo_t foo1, foo2;

int main(void) {

    if ( (foo1.get() != 2) || (foo2.get() != 1) )
        abort();
    exit(0);
}