shithub: mc

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