shithub: mc

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

View raw version
use std

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

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