ref: 5818bcb7a0fb78af6a4c2816a72db5b1381e9cac
dir: /test/structptr.myr/
use std
/* tests reading and writing through a struct pointer. exits with 42. */
type pair = struct
a : int
b : int
;;
const frob = {s
s.a = 12
s.b = 30
}
const main = {
var s : pair
frob(&s)
std.exit(s.a + s.b)
}