shithub: mc

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