shithub: mc

ref: 69eda20a8c3c5f04f71c22242864e87f3b34e69b
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
}