shithub: mc

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