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