shithub: mc

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