shithub: mc

ref: 8c0fab2ccc7f5d5c4a611a4de4078c7af21963da
dir: /test/genericuret.myr/

View raw version
use std

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

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