shithub: mc

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