shithub: mc

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