ref: e5b424be893e7f771456a548ab66e1bcb7ed50d3
dir: /test/empty-struct.myr/
use std type foo = struct ;; type bar = struct baz : foo[:] quux : foo[0][:] ;; const main = { var a : foo var z : foo[0] var b : bar = [.baz = [a, a][:], .quux = [z, z, z][:]] var c : int = 0 for f : b.baz c += 3 ;; for f : b.quux c += 5 ;; std.exit(c) }