clangir
clangir copied to clipboard
Crash with try statement
void f(){
}
void test(int x){
try {
f();
if (x) {
f();
}
} catch(...) {
}
}