shithub: mc

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