mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
11 lines
182 B
Zig
11 lines
182 B
Zig
comptime {
|
|
const a = -128;
|
|
const b: i8 = -1;
|
|
_ = a / b;
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :4:11: error: overflow of integer type 'i8' with value '128'
|