shithub: mc

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