shithub: mc

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