zig/test/behavior/bugs/2557.zig

7 lines
78 B
Zig

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