shithub: mc

ref: 5ae8f105a5e471a63033238946f7596e26ed0ab5
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
}