OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb123.C
1 // { dg-do assemble  }
2 // { dg-options "-O2 -W   " }
3 #include "stdio.h"
4
5 void writeNote() throw( int )
6 {
7     printf( "hello world\n" );
8     try { }
9     catch( int ){ throw; }
10 }