#include #include int main() { std::exception e; try { throw e; } catch (std::exception e) { printf("caught std::exception\n"); } return 0; }