shithub: mc

ref: 3384df94db0bc2cd8cb97f5eddbdcabc9b2a2eae
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))
}