shithub: mc

ref: 335908ff6d49b6ee4da3803b2c44f23916a9047f
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
}