shithub: mc

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