shithub: mc

ref: 009cb9bf1139d5ddda4e464734f53eeb4ec10d74
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
}