shithub: mc

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