shithub: mc

ref: 4531e7d7f72c2171fdac5c1914ebaf867db61187
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
}