shithub: mc

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