shithub: mc

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

View raw version
use std

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

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