Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
div_overflow.zig
pretty
plain
permalink
blame
history
•
9 lines
•
147 B
1
comptime {
2
const a = -128;
3
const b: i8 = -1;
4
_ = a / b;
5
}
6
7
// error
8
//
9
// :4:11: error: overflow of integer type 'i8' with value '128'