shithub: mc

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