1 2 3 4 5 6 7 8 9 10
// { dg-do assemble } // { dg-options "-O2 -W " } #include "stdio.h" void writeNote() throw( int ) { printf( "hello world\n" ); try { } catch( int ){ throw; } }