shithub: mc

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