shithub: mc

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

View raw version
use std

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

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