shithub: mc

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

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

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