mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00: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'
|