shithub: mc

ref: 65bd7e26119f1a414b43bd6837f0db27641a4b5c
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
}