shithub: mc

ref: 21422e62f15776a5abf3bf16e8416ffa9f8771fc
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}