shithub: mc

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