shithub: mc

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