shithub: mc

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