shithub: mc

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