shithub: mc

ref: fc414618bf82fed12fb5fac9f1132bcc9dfb1557
dir: /test/struct_oneval.myr/

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

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