shithub: mc

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