shithub: mc

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