shithub: mc

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