Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
options
/
option_ptr_init_test.v
12
lines
·
10
sloc
·
117 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
struct
Queue {
2
head ?&Node
3
}
4
5
struct
Node {
6
next ?&Node
7
}
8
9
fn
test_main() {
10
q := Queue{}
11
assert q.head ==
none
12
}
13