shithub: mc

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