zig/test/behavior/bugs/2557.zig
2022-10-19 01:38:19 +03:00

7 lines
77 B
Zig

test {
var a = if (true) {
return;
} else true;
_ = a;
}