shithub: mc

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

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

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