shithub: mc

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