Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20081211-1_0.C
blob89c06acf53a2d2bdc1eba5ae0e002f55bf2aa97a
1 #include "20081211-1.h"
3 foo *
4 create_foo (void)
6   return new foo;
9 void
10 destroy_foo (foo *p)
12   delete p;
15 int
16 main ()
18   return 0;