shithub: mc

ref: 0c0c4f2f6b3606ab6387b92cef21e166bc9c075b
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
}