shithub: mc

ref: 58fc61a9b04d57ccafa3b1316fbea2faccf5fbbd
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}