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

// run
//