shithub: mc

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