shithub: mc

ref: 10c0307e860d4f1ff9f9f2db67aa1fa4858bfaaa
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))
}