1 #include <new>
2 #include <exception>
3 #include <cstdio>
4 
foo(void)5 int foo(void)
6 {
7     ::printf("Hello ");
8     throw std::exception();
9 }
10 
11