shithub: mc

ref: 143601ffb36cd85a3469552ba79cfb192ef95958
dir: /test/genericuret.myr/

View raw version
use std

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

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