shithub: mc

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