1 // PR c++/411
2 
3 // Test that a fully-constructed base is destroyed before transferring
4 // control to the handler of a function-try-block.
5 
6 // Split into pieces for binary compatibility testing October 2002
7 
8 extern void dtor1_x (void);
9 
10 int
main()11 main ()
12 {
13   dtor1_x ();
14 }
15