shithub: mc

ref: 980f6c7548c5917cef835c84c0aeb96773175785
dir: /test/genericuret.myr/

View raw version
use std

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

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