shithub: mc

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