shithub: mc

ref: 1561b4dcc0b10e7d6efa7b0dc8e8f687cf490983
dir: /test/genericuret.myr/

View raw version
use std

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

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