shithub: mc

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