shithub: mc

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