1comptime {
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'