shithub: mc

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

View raw version
use std

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

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