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

strconv: fix fxx_to_str_l_parse/fxx_to_str_l_parse_no_dot returning s without cloning

This commit is contained in:
Delyan Angelov
2021-06-19 07:48:46 +03:00
parent acf9d168cb
commit aea23e8a40
3 changed files with 4 additions and 6 deletions

View File

@@ -1092,8 +1092,6 @@ fn test_array_int_pop() {
assert z == 4
x1 := a.pop()
x2 := a.pop()
dump(x1)
dump(x2)
final := a.pop()
assert final == 1
}