shithub: mc

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