shithub: mc

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