Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr46154.C
blob424b1fad83b4a94964b01d467ee785857e830fd4
1 /* { dg-do compile } */
2 /* { dg-options "-fipa-cp-clone" } */
4 struct S
6   virtual int foo ()
7     {
8       return foo () == 0;
9     }
10   virtual void baz ();
13 void A ()
15   S s;
16   s.foo ();