shithub: mc

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

View raw version
const f = {
	-> 42
}

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

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