shithub: mc

ref: 6940a02fd47d73ba5dd0ad3a82b1945b639a23dc
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}