shithub: mc

ref: 770c90d4a5b16a5d598072b6983e50969151b166
dir: /test/genericuret.myr/

View raw version
use std

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

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