const Struct = struct { previous: ?&Struct, next: ?&Self, }; const main = fn () *!void { var s = Struct{ .previous = null, .next = null, }; }