Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr33589-2.C
blob325892bc684c13d1a0e2e6ba9f5c7033a024c403
1 // { dg-do compile }
3 void f(void*) throw();
5 void somefunction()
7 try {
8    void (*g)(void*) = (void (*)(void*))f;
9    void (*g2)(int*) = (void (*)(int*))g;
10     g2(0);
11 } catch (...)
12 {throw;}