shithub: mc

ref: ff88594df5c5df6fb8f227ab8e5df3529ba6e72f
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")
}