shithub: mc

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

View raw version
use std

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

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