ref: 5683fabf488d8e1a8e6beeff31e732cf8dcf590b 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 }