shithub: mc

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