shithub: mc

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