mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
17 lines
130 B
C++
17 lines
130 B
C++
int foo() try {
|
|
return 0;
|
|
}
|
|
catch(...) {
|
|
throw;
|
|
}
|
|
|
|
class Bar
|
|
{
|
|
Bar() try {
|
|
return;
|
|
}
|
|
catch(...) {
|
|
throw;
|
|
}
|
|
};
|