Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
non_int_passed_to_floatFromInt.zig
pretty
plain
permalink
blame
history
•
8 lines
•
153 B
1
export fn entry() void {
2
const x: f32 = @floatFromInt(1.1);
3
_ = x;
4
}
5
6
// error
7
//
8
// :2:34: error: expected integer type, found 'comptime_float'