shithub: mc

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