shithub: mc

ref: 09f4922d56d1946aa02d5fedccb53b8a32d76ad2
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

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

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