shithub: mc

ref: 28284f54c9ac36296ad3c820e779c24fcfc6f550
dir: /test/genericuret.myr/

View raw version
use std

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

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