mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
12 lines
182 B
Zig
12 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'
|