shithub: mc

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