shithub: mc

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