shithub: mc

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