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