shithub: mc

ref: 466e33d95d9da9d218952c836d99c75ac2142b05
dir: /test/genericuret.myr/

View raw version
use std

generic work = {val : @a
	-> `std.Some val
}

const main = {
	work(123)
	std.exit(42)
}