shithub: mc

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