aboutsummaryrefslogtreecommitdiff
path: root/test/cases/binary_operands.24.zig
blob: 08dc4430a2298ea934e15c140c9aa0f6d65b7603 (plain)
1
2
3
4
5
6
7
8
9
pub fn main() void {
    var b: bool = false;
    b = b and true;
    if (b) unreachable;
    return;
}

// run
//