shithub: mc

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