shithub: mc

ref: 14c0d8b03e8390c4f06bde071294a0c2325e8c7f
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
}