mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
strconv: fix atof test
This commit is contained in:
parent
774fb7e850
commit
98086d7259
@ -65,8 +65,8 @@ fn test_atof() {
|
|||||||
|
|
||||||
// special cases
|
// special cases
|
||||||
mut f1 := f64(0.0)
|
mut f1 := f64(0.0)
|
||||||
mut ptr := *u64(&f1)
|
mut ptr := &u64(&f1)
|
||||||
ptr = *u64(&f1)
|
ptr = &u64(&f1)
|
||||||
|
|
||||||
// DOUBLE_PLUS_ZERO
|
// DOUBLE_PLUS_ZERO
|
||||||
f1=0.0
|
f1=0.0
|
||||||
|
Loading…
Reference in New Issue
Block a user