shithub: mc

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