shithub: mc

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