mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
8 lines
161 B
Zig
8 lines
161 B
Zig
test "integer cast panic" {
|
|
var a: u16 = 0xabcd; // runtime-known
|
|
_ = &a;
|
|
const b: u8 = @intCast(a);
|
|
_ = b;
|
|
}
|
|
|
|
// test_error=cast truncated bits
|