shithub: mc

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