shithub: mc

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