v/vlib/v/checker/tests/division_by_cast_zero_float...

5 lines
70 B
V
Raw Normal View History

2020-12-11 04:44:07 +01:00
fn main() {
println(f32(1.0)/f32(0.0))
println(f64(1.0)/f64(0.0))
}