shithub: mc

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

View raw version
use std

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

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