shithub: mc

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