shithub: mc

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