OSDN Git Service

update
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb123.C
1 // Special g++ Options: -O2 -W   
2 // Build don't link: 
3 #include "stdio.h"
4
5 void writeNote() throw( int )
6 {
7     printf( "hello world\n" );
8     try { }
9     catch( int ){ throw; }
10 }