shithub: mc

ref: 5538fd4100c6e911752105ab49176833a9c1e499
dir: /test/genericuret.myr/

View raw version
use std

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

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