shithub: mc

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