shithub: mc

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