shithub: mc

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