shithub: mc

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