shithub: mc

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

View raw version
use std

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

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