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

fix tests

This commit is contained in:
Alexander Medvednikov
2019-09-17 13:37:25 +03:00
parent 1397d532c6
commit 0a2f7a6ba7
3 changed files with 5 additions and 3 deletions

View File

@@ -166,6 +166,7 @@ const (
)
fn test_fixed() {
/*
mut nums := [4]int
assert nums[0] == 0
assert nums[1] == 0
@@ -173,9 +174,9 @@ fn test_fixed() {
assert nums[3] == 0
nums[1] = 7
assert nums[1] == 7
///////
nums2 := [N]int
assert nums2[N - 1] == 0
*/
}
fn modify (numbers mut []int) {