shithub: mc

ref: e1f5c300e0985422ef62acf841b43614fd58937b
dir: /test/genericuret.myr/

View raw version
use std

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

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