mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
164 B
C++
16 lines
164 B
C++
class E { };
|
|
class F {
|
|
public:
|
|
F() { }
|
|
};
|
|
void Throw(int i) {
|
|
try {
|
|
if(i)
|
|
throw E();
|
|
else
|
|
throw F();
|
|
} catch(E *e) {
|
|
throw;
|
|
}
|
|
|
|
} |