mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
array: fix reverse()
This commit is contained in:
@@ -259,6 +259,7 @@ fn test_reverse() {
|
||||
a := [1, 2, 3, 4]
|
||||
b := ['test', 'array', 'reverse']
|
||||
c := a.reverse()
|
||||
println(c)
|
||||
d := b.reverse()
|
||||
for i, _ in c {
|
||||
assert c[i] == a[a.len - i - 1]
|
||||
|
Reference in New Issue
Block a user