shithub: mc

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

View raw version
use std

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

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