shithub: mc

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