shithub: mc

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