Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_failed_int_to_float_coercion.zig
pretty
plain
permalink
blame
history
•
8 lines
•
161 B
1
test "integer type is too large for implicit cast to float" {
2
var int: u25 = 123;
3
_ = ∫
4
const float: f32 = int;
5
_ = float;
6
}
7
8
// test_error=