shithub: mc

ref: 9820aa94426cb91ca7dc70f9dcfcdbb56445b797
dir: /test/genericuret.myr/

View raw version
use std

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

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