shithub: mc

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