shithub: mc

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