shithub: mc

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