mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
16 lines
160 B
C++
16 lines
160 B
C++
class E { };
|
|
class F {
|
|
public:
|
|
F() { }
|
|
};
|
|
void f(int i) {
|
|
try {
|
|
if(i)
|
|
throw E();
|
|
else
|
|
throw F();
|
|
} catch(E *e) {
|
|
throw;
|
|
}
|
|
|
|
} |