shithub: mc

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