shithub: mc

ref: 1b564b2e25048bc2bb7e4f0a6cd4dd24938eeb95
dir: /test/genericuret.myr/

View raw version
use std

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

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