mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
8 lines
163 B
Zig
8 lines
163 B
Zig
comptime {
|
|
const value: i32 = -1;
|
|
const unsigned: u32 = @intCast(value);
|
|
_ = unsigned;
|
|
}
|
|
|
|
// test_error=type 'u32' cannot represent integer value '-1'
|