shithub: mc

ref: 7096d0e99d9deb053a7763f49b2b1b7b1df20a6a
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
}