shithub: mc

ref: 7f764bf844fa3630cbc8e2740fa2a1c8439c4067
dir: /test/struct_oneval.myr/

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

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