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

7 lines
84 B
V

struct Cell {}
fn test_main() {
mut var := []?Cell{len: 1}
assert var.len == 1
}