shithub: mc

ref: 353cdc329987436b4a76a46a8de4e528dbf94d6b
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
}