shithub: mc

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