shithub: mc

ref: f7141e2d8ed52e0fb493810ea71adf22fa57a49e
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
}