shithub: mc

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

View raw version
use std

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

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