Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_intCast_builtin.zig
pretty
plain
permalink
blame
history
•
8 lines
•
182 B
1
test "integer cast panic" {
2
var a: u16 = 0xabcd; // runtime-known
3
_ = &a;
4
const b: u8 = @intCast(a);
5
_ = b;
6
}
7
8
// test_error=integer does not fit in destination type