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

array: fix initialization of empty fixed size arrays

This commit is contained in:
Alexander Medvednikov 2019-10-09 15:26:27 +03:00
parent 2403abe1ee
commit b1da59845e
2 changed files with 5 additions and 5 deletions

View File

@ -59,6 +59,8 @@ fn (p mut Parser) gen_var_decl(name string, is_static bool) string {
initializer := p.cgen.cur_line.right(pos)
if initializer.len > 0 {
p.cgen.resetln(' = {' + initializer.all_after('{') )
} else if initializer.len == 0 {
p.cgen.resetln(' = { 0 }')
}
}

View File

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