shithub: mc

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