shithub: mc

ref: 92747b6c52dda775dcc85002c06efab36d88cc4d
dir: /test/genericuret.myr/

View raw version
use std

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

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