shithub: mc

ref: 3850484227a4d875cd45559b11be74996440a7c4
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

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

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