Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_comptime_invalid_cast_truncate.zig
pretty
plain
permalink
blame
history
•
7 lines
•
171 B
1
comptime {
2
const spartan_count: u16 = 300;
3
const byte: u8 = @intCast(spartan_count);
4
_ = byte;
5
}
6
7
// test_error=type 'u8' cannot represent integer value '300'