shithub: mc

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