shithub: mc

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