shithub: mc

ref: 830f28c844022a71f6c7ad1caf1bcfb7ca9397dc
dir: /test/genericuret.myr/

View raw version
use std

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

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