shithub: mc

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

View raw version
use std

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

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