shithub: mc

ref: 4be1adfd0a6da6bf6d0098238bf9343ca6d38cb3
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

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

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