shithub: mc

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