shithub: mc

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