blob: dac75d6d15a45157a0845503cfc191e5106e914f [file] [log] [blame]
#include <new>
#include <exception>
#include <cstdio>
void foo()
{
try {
::printf("Hello ");
throw std::exception();
}
catch (std::exception e) {
::printf(" World!\n");
}
}