shithub: mc

ref: 3ca7a098ddb3aacabafb6c20a57feec1dbafe4ab
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))
}