shithub: mc

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