Files
codeql/cpp/ql/test/library-tests/syntax-zoo/FunctionTryStmt.cpp
2019-08-06 14:10:25 +02:00

17 lines
130 B
C++

int foo() try {
return 0;
}
catch(...) {
throw;
}
class Bar
{
Bar() try {
return;
}
catch(...) {
throw;
}
};