shithub: mc

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

View raw version
use std

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

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