shithub: mc

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