shithub: mc

ref: 3423dd0094c98305133e3dc142761de12461ae22
dir: /test/struct_oneval.myr/

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

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