shithub: mc

ref: 27b4f894b3b7456b64908ad8c2d50ba66ebb513a
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}