shithub: mc

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