FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb66.C
blob00ef6b0b62b84de032e77c738f29b1d627556b9b
1 #include <cassert>
2 #include <iostream>
4 int bar ()
6   throw 100;
9 int main ()
11   int i = 0;
12   try
13     {
14       i = bar ();
15     }
16   catch (...)
17     {
18     }
20 //  std::cout << "i = " << i << std::endl;
21   assert (i == 0) ;