blob: dd729d48ae9bf4944a1f569b8bab93c3cc32d9a0 [file] [log] [blame]
// Special g++ Options: -O2 -W
// Build don't link:
#include "stdio.h"
void writeNote() throw( int )
{
printf( "hello world\n" );
try { }
catch( int ){ throw; }
}