shithub: mc

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