shithub: mc

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