ref: db34187dc25f6b3f1a85b85c4dcf9a69b1cb4d54 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) }