1// { dg-do run }
2
3void f() __attribute((__constructor__));
4int i;
5void f() { i = 1; }
6
7int main(int, char **)
8{
9  return 1-i;
10}
11