blob: b5efa0c35f68997318b96df8de8aa8fad8ffbf98 [file] [log] [blame]
/* { 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)));