shithub: mc

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