aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/compile-time_remainder_division_by_zero.zig
blob: 301fad6a68e686906f237e87fd13f720e3525c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
comptime {
    const a: i32 = 1;
    const b: i32 = 0;
    const c = a % b;
    _ = c;
}

// error
// backend=stage2
// target=native
//
// :4:19: error: division by zero here causes undefined behavior