shithub: mc

ref: 3360bf0e88b086b0c7f7957eeb4a6f0b4eaeebc7
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))
}