15 lines
215 B
C++
15 lines
215 B
C++
#include <new>
|
|
#include <exception>
|
|
#include <cstdio>
|
|
|
|
void foo()
|
|
{
|
|
try {
|
|
::printf("Hello ");
|
|
throw std::exception();
|
|
}
|
|
catch (std::exception e) {
|
|
::printf(" World!\n");
|
|
}
|
|
}
|
|
|