shithub: mc

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