shithub: mc

ref: 710a12397e717608d3ae0886fd41aaa7dac8fb46
dir: /test/genericuret.myr/

View raw version
use std

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

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