shithub: mc

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