shithub: mc

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

View raw version
use std

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

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