shithub: mc

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