aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/test_comptime_division_by_zero.zig
blob: 752bfb7d42181b278cbc1050ec5453ad3dc87524 (plain)
1
2
3
4
5
6
7
8
comptime {
    const a: i32 = 1;
    const b: i32 = 0;
    const c = a / b;
    _ = c;
}

// test_error=division by zero