shithub: mc

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

View raw version
const f = {
	-> 42
}

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

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