shithub: mc

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