shithub: mc

ref: 02922f0289a990a65ad7ede45f2a2e54df7c7162
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

generic id = {a:@a
	-> f()
}

const main = {
	id("adsf")
	-> id(42)
}