1#include "spec3.h"
2
3A::A() {}
4
5void func() throw (B,A)
6{
7  throw A();
8}
9