shithub: mc

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