shithub: mc

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