mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
6 lines
114 B
Zig
6 lines
114 B
Zig
comptime {
|
|
const x = @shlExact(@as(u8, 0b01010101), 2);
|
|
_ = x;
|
|
}
|
|
|
|
// test_error=operation caused overflow
|