zig/doc/langref/test_comptime_invalid_cast_truncate.zig

8 lines
171 B
Zig
Raw Normal View History

comptime {
const spartan_count: u16 = 300;
const byte: u8 = @intCast(spartan_count);
_ = byte;
}
// test_error=type 'u8' cannot represent integer value '300'