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

builtin: fix warnings for tests inside vlib/builtin/js

This commit is contained in:
Delyan Angelov
2022-01-30 16:36:56 +02:00
parent f6cb772347
commit 96c8188083
4 changed files with 9 additions and 1 deletions

View File

@@ -1166,7 +1166,9 @@ fn test_array_int_pop() {
assert a.len == 3
assert z == 4
x1 := a.pop()
println(x1)
x2 := a.pop()
println(x2)
final := a.pop()
assert final == 1
}