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