shithub: mc

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