shithub: mc

ref: 4a95d9e52e8cb216f9ba963096097b4906aa49f0
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;
impl fooable int

generic foo = {x : @a::fooable
	-> x
}

const main = {
	std.exit(foo(123))
}