Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lto / pr54625-1_1.C
blob2d0d5bfbadf254d23b0da9d797928188e4df2c74
1 extern "C" double sin (double);
2 typedef double UnaryFunType (double);
3 class A
5 public:
6   int hash ();
7   double lookup (UnaryFunType p1)
8     {
9       int a = hash ();
10       if (p1)
11         return 0;
12     }
14 A b;
15 void
16 math_sin_impl ()
18   b.lookup (sin);