1 /* This doesn't work on solaris2 for reasons described in PR 6482. */
2 /* { dg-do run { xfail *-*-solaris2* } } */
3 /* { dg-additional-sources "conpr-2a.cc" } */
11 foo_t(void) { x=++count; }
12 int get(void) { return x; }
17 extern foo_t foo1, foo2;
21 if ( (foo1.get() != 2) || (foo2.get() != 1) )