shithub: mc

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