shithub: mc

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