shithub: mc

ref: 70f97fe9898b4852257a9268e6ea0592ee7e3a88
dir: /test/recgeneric.myr/

View raw version
use std

type o(@a) :: integral @a = union
	`S @a
;;

type x(@k) = struct
	n  : o(x(@k)#)
;;

const main = {
	var test : x(int)
	std.put("built\n")
}