shithub: mc

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

View raw version
use std

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

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