shithub: mc

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

View raw version
use std

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

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