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