shithub: mc

ref: 1b56041cec12b718c7c049d7739ffe73f0fcd53b
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
}