mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 08:04:50 +01:00
6 lines
114 B
Zig
6 lines
114 B
Zig
comptime {
|
|
var byte: u8 = 255;
|
|
byte += 1;
|
|
}
|
|
|
|
// test_error=overflow of integer type 'u8' with value '256'
|