shithub: mc

ref: c40815889c460edd815ead46f1593510e0c56147
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

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

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