shithub: mc

ref: 00e81c21f68c73403e42d08a6d5d955aa303cefd
dir: /test/genericuret.myr/

View raw version
use std

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

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