1comptime { 2 const float: f32 = 4294967296; 3 const int: i32 = @intFromFloat(float); 4 _ = int; 5} 6 7// test_error=float value '4294967296' cannot be stored in integer type 'i32'