vlib/v/checker/tests/invalid_recursive_struct_err.vv:3:2: error: recursive struct is only possible with optional pointer (e.g. ?&Node) 1 | struct Node { 2 | mut: 3 | next ?Node | ~~~~~~~~~~ 4 | }