Skip to content

Instantly share code, notes, and snippets.

@qrealka
Created April 11, 2018 15:26
Show Gist options
  • Save qrealka/d18f1cb7e0967dd08160238afb7cc866 to your computer and use it in GitHub Desktop.
Save qrealka/d18f1cb7e0967dd08160238afb7cc866 to your computer and use it in GitHub Desktop.
#include <cstdio>
#include <cstdlib>
bool g() noexcept(false)
{
return rand() & 1;
}
void f() noexcept(noexcept(noexcept(g())))
{
throw 1;
}
int main()
{
try{
f();
} catch(...) {
printf("catch\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment