ref: a7124a8f1ea92ff0aac1fa2dc7a2a573e0643ffa dir: /test/structptr.myr/
type pair = struct a : int b : int ;; const frob = {s s.a = 12 s.b = 30 } const main = { var s : pair frob(&s) -> s.a + s.b }