shithub: mc

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