shithub: mc

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

View raw version
const f = {
	-> 42
}

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

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