shithub: mc

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