shithub: mc

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