mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
7dcc53658f
* add as much of gnu as we need to get gcc built * address code review
10 lines
188 B
C++
10 lines
188 B
C++
#include <iostream>
|
|
struct exception { };
|
|
int main()
|
|
{
|
|
std::cout << "Hello, world!" << std::endl;
|
|
try { throw exception{}; }
|
|
catch (exception) { }
|
|
catch (...) { }
|
|
return 0;
|
|
} |