blob: 909e0369153c4d93a9a2910289e72d21bd9f503c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export fn foo() void {
var a: f32 = 2;
_ = @floatToInt(comptime_int, a);
}
export fn bar() void {
var a: u32 = 2;
_ = @intToFloat(comptime_float, a);
}
// error
// backend=stage2
// target=native
//
// :3:35: error: unable to resolve comptime value
// :3:35: note: value being casted to 'comptime_int' must be comptime known
// :7:37: error: unable to resolve comptime value
// :7:37: note: value being casted to 'comptime_float' must be comptime known
|