#include <stdio.h>#include "dl3header.h"extern void f (void);intmain (void){try{f();}catch (A a){if (a.i == 42)printf ("OK\n");elseprintf ("BAD1\n");}catch (...){printf ("BAD2\n");}return 0;}
#include <stdio.h>#include "dl3header.h"extern void f (void);intmain (void){try{f();}catch (A a){if (a.i == 42)printf ("OK\n");elseprintf ("BAD1\n");}catch (...){printf ("BAD2\n");}return 0;}