shithub: mc

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