shithub: mc

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