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:
parent
2403abe1ee
commit
b1da59845e
@ -59,6 +59,8 @@ fn (p mut Parser) gen_var_decl(name string, is_static bool) string {
|
|||||||
initializer := p.cgen.cur_line.right(pos)
|
initializer := p.cgen.cur_line.right(pos)
|
||||||
if initializer.len > 0 {
|
if initializer.len > 0 {
|
||||||
p.cgen.resetln(' = {' + initializer.all_after('{') )
|
p.cgen.resetln(' = {' + initializer.all_after('{') )
|
||||||
|
} else if initializer.len == 0 {
|
||||||
|
p.cgen.resetln(' = { 0 }')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,6 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
fn test_fixed() {
|
fn test_fixed() {
|
||||||
/*
|
|
||||||
mut nums := [4]int
|
mut nums := [4]int
|
||||||
assert nums[0] == 0
|
assert nums[0] == 0
|
||||||
assert nums[1] == 0
|
assert nums[1] == 0
|
||||||
@ -174,7 +173,6 @@ fn test_fixed() {
|
|||||||
assert nums[1] == 7
|
assert nums[1] == 7
|
||||||
nums2 := [N]int
|
nums2 := [N]int
|
||||||
assert nums2[N - 1] == 0
|
assert nums2[N - 1] == 0
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn modify (numbers mut []int) {
|
fn modify (numbers mut []int) {
|
||||||
|
Loading…
Reference in New Issue
Block a user