shithub: mc

ref: 2aacb9ac7cb724cf64c7da8eafaf41001f0d3810
dir: /test/genericuret.myr/

View raw version
use std

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

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