shithub: mc

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