Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr42739.C
blobccc05f8360c107d200b76e667ef742df3df791ec
1 /* { dg-do compile } */
3 struct s { ~s() { s(); } };
5 int f()
7   M:
8     s o = s();
9     f();
10     f();
12   L:
13     goto *(f() ? &&L : &&M);
15     return 0;