shithub: mc

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