shithub: mc

ref: 627ef0fa8e965ac37ba79db1eae7e7d6b78c53b7
dir: /test/genericuret.myr/

View raw version
use std

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

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