shithub: mc

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