clangir icon indicating copy to clipboard operation
clangir copied to clipboard

Crash with try statement

Open wenpen opened this issue 8 months ago • 1 comments

void f(){
}

void test(int x){
  try {
    f();
    if (x) {
      f();
    }
  } catch(...) {
  }
}

wenpen avatar Jun 14 '24 09:06 wenpen