10 lines
126 B
C++
10 lines
126 B
C++
#include <new>
|
|
#include <exception>
|
|
#include <cstdio>
|
|
|
|
int foo(void)
|
|
{
|
|
::printf("Hello ");
|
|
throw std::exception();
|
|
}
|
|
|