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

ci: fix failing -Werror job with tcc

This commit is contained in:
Delyan Angelov
2021-03-19 09:34:41 +02:00
parent 9ea88c090b
commit ea3d1405ee
2 changed files with 5 additions and 3 deletions

View File

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