shithub: mc

ref: efead633b689b6f4f6a18e8a991a00f2f2aa70b7
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
}