shithub: mc

ref: 020869f23ed9d0f0ca5b53bdce1f87c05024689f
dir: /test/genericuret.myr/

View raw version
use std

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

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