Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eh990323-3.C
blobe8369ca764ccce6f673fc3e7e9c3d34423d101b4
1 // { dg-do run  }
2 // try throwing 0 cast to a class object
3 extern "C" void abort ();
4 extern "C" void exit (int);
6 struct A {};
8 void f()
10         throw (A*)0;
13 int
14 main()
16         int flag;
18         flag = 0;
19         try {
20                 f();
21         }
22         catch (A*) {
23                 flag = 1;
24         }
26         if (!flag)
27                 abort();
29         exit (0);