shithub: mc

ref: 35b4358b60d0afdff7e4599a9e625c0fc1580288
dir: /test/genericuret.myr/

View raw version
use std

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

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