Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
options
/
option_array_init_test.v
10
lines
·
10
sloc
·
160 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
fn
test_main() {
2
a := []?int{len: 3, init:
none
}
3
mut
t := a[0]
4
assert t ==
none
5
t = a[1]
6
assert t ==
none
7
t = a[2]
8
assert t ==
none
9
assert a.len == 3
10
}
11