Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.robertl / eb66.C
blob3088593656e1901c52f826ebc004477462c05e02
1 // { dg-do run  }
2 #include <cassert>
3 #include <iostream>
5 int bar ()
7   throw 100;
10 int main ()
12   int i = 0;
13   try
14     {
15       i = bar ();
16     }
17   catch (...)
18     {
19     }
21 //  std::cout << "i = " << i << std::endl;
22   assert (i == 0) ;