shithub: mc

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