blob: 38fe964e39c9e516d7cb57650397b7a756543072 [file] [log] [blame]
static bool continue_execution = true;
bool call_discard() {
continue_execution = false;
return true;
}
void f() {
bool v = call_discard();
bool also_unreachable = false;
if (!(continue_execution)) {
discard;
}
}