shithub: mc

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