shithub: mc

ref: 0113cd12d5ce3faae500772c76018f0ad4dd776a
dir: /test/genericuret.myr/

View raw version
use std

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

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