shithub: mc

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