shithub: mc

ref: 87b4515f7e065029ec88eca6f6133f53223def8a
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))
}