shithub: mc

ref: dabed9c4d7c7b367b08a4b2ede1b27f2d218052b
dir: /test/aritylow.myr/

View raw version
use std
/* should fail because we call f with too few args */
const f = {a:int, b:int, c:int

}

const main = {
	-> f(1, 2)
}