shithub: mc

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

View raw version
const f = {
	-> 42
}

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

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