mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-30 23:02:49 +03:00
7 lines
119 B
Zig
7 lines
119 B
Zig
comptime {
|
|
const x = @shrExact(@as(u8, 0b10101010), 2);
|
|
_ = x;
|
|
}
|
|
|
|
// test_error=exact shift shifted out 1 bits
|