1 2 3 4 5 6 7 8 9
#include "spec3.h" extern void func () throw (B,A); void spec3_x (void) { try { func(); } catch (A& a) { } }