shithub: mc

ref: 90c065621cb9245e996dd379270ffa7c277d13db
dir: /test/genericuret.myr/

View raw version
use std

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

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