shithub: mc

ref: e7753379f41991512b2ba815d879800e1b7c725b
dir: /test/struct1.myr/

View raw version
type val = struct
	a : int
;;

const main = {
	var s : val
	s.a = 12
	-> s.a
}