shithub: mc

ref: 513bacd4d7929deaef69c08b79e4d724c9506136
dir: /test/struct_oneval.myr/

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

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