aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/test_comptime_divExact_remainder.zig
blob: 2f0b1e7353e6f0fb42b96ce38d5e0f4d8cc77563 (plain)
1
2
3
4
5
6
7
8
comptime {
    const a: u32 = 10;
    const b: u32 = 3;
    const c = @divExact(a, b);
    _ = c;
}

// test_error=exact division produced remainder