1 // PR c++/35708
2 // { dg-options "" }
3 
4 struct object { int one_o; int allocstamp; };
5 int pgci_pointable (object obj);
6 void foo(void);
main(int argc,char * argv[])7 int main (int argc, char *argv[])
8 {
9   if (pgci_pointable((object){7,100}))
10     {
11       bad_rehash_size:
12         foo();
13     }
14   goto bad_rehash_size;
15 }
16