shithub: mc

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