ref: e46120257f58f8f699a235949c8117eccc6aafa2 dir: /test/struct.myr/
type pair = struct a : int b : int ;; const main = { var s : pair s.a = 12 s.b = 30 -> s.a + s.b }