shithub: mc

ref: 2fd5ae3c5599fdd067ed11f3a58fb03da587db28
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}