shithub: mc

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