shithub: mc

ref: 1debb50046fe922df2ee5c0cc411f1b0749a474f
dir: /test/union-extraarg.myr/

View raw version
use std
/*
should fail to compile becuse
we're constructing a union that
with too many arguments.
*/
type u = union
	`Foo
;;

const main = {
	`Foo 123
}