aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb123.C
blob: dd729d48ae9bf4944a1f569b8bab93c3cc32d9a0 (plain)
1
2
3
4
5
6
7
8
9
10
// Special g++ Options: -O2 -W   
// Build don't link: 
#include "stdio.h"

void writeNote() throw( int )
{
    printf( "hello world\n" );
    try { }
    catch( int ){ throw; }
}