Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / special / conpr-2a.cc
blob69fb7d648319f5cd115e5c077d784750c10f08f0
1 /* { dg-do run } */
3 class foo_t {
4 int x;
5 static int count;
6 public:
7 foo_t(void) { x=++count; }
8 int get(void) { return x; }
9 };
11 foo_t foo1 __attribute__((init_priority(6000)));
12 foo_t foo2 __attribute__((init_priority(5000)));