Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_ambiguous_coercion.zig
pretty
plain
permalink
blame
history
•
7 lines
•
138 B
1
// Compile time coercion of float to int
2
test "implicit cast to comptime_int" {
3
const f: f32 = 54.0 / 5;
4
_ = f;
5
}
6
7
// test_error=