shithub: mc

ref: 6aab6b7b0d8fb0e37f7021f17714efbe02a227bb
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
}