1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

math: fix error for math.abs(0.0)/math.abs(0) (related #14165) (#14191)

This commit is contained in:
yuyi
2022-04-27 18:23:37 +08:00
committed by GitHub
parent 752e105f25
commit 82ac39eca6
2 changed files with 11 additions and 1 deletions

View File

@@ -408,6 +408,16 @@ fn test_abs() {
}
}
fn test_abs_zero() {
ret1 := abs(0)
println(ret1)
assert '$ret1' == '0'
ret2 := abs(0.0)
println(ret2)
assert '$ret2' == '0'
}
fn test_floor() {
for i := 0; i < math.vf_.len; i++ {
f := floor(math.vf_[i])