blob: 0310e83776d0870708f4fb1c54fd98579fcb4a9c [file] [log] [blame]
fn foo(a : bool, b : bool, c : bool, d : bool, e : bool) {
if (a) {
if (b) {
return;
}
if (c) {
if (d) {
return;
}
if (e) {
}
}
}
}