shithub: mc

ref: 566ae48232e80b003d88d21a8e42f3371367143c
dir: /test/genericuret.myr/

View raw version
use std

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

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