shithub: mc

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