shithub: mc

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