v2 / vlib / v / tests / options / option_ptr_init_test.v
12 lines · 10 sloc · 117 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1struct Queue {
2 head ?&Node
3}
4
5struct Node {
6 next ?&Node
7}
8
9fn test_main() {
10 q := Queue{}
11 assert q.head == none
12}
13