shithub: mc

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