shithub: mc

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