aboutsummaryrefslogtreecommitdiff
path: root/test/cases/rem.zig
blob: 40bda6b635e10d398139b19a47e27d575486e90b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn assert(ok: bool) void {
    if (!ok) unreachable;
}
fn rem(lhs: i32, rhs: i32, expected: i32) bool {
    return @rem(lhs, rhs) == expected;
}
pub fn main() void {
    assert(rem(-5, 3, -2));
    assert(rem(5, 3, 2));
}

// run
// backend=selfhosted,llvm
// target=x86_64-linux,x86_64-macos
//