ref: 14d4a8e93c6804eb049eec51a5102c9d8b10c1c5 dir: /test/struct1.myr/
use std /* make sure assigning to a 1-element struct works; exit status should be 12 */ type val = struct a : int ;; const main = { var s : val s.a = 12 std.exit(s.a) }