shithub: mc

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