错误信息是
bq. 在多方法'multi'S检查中没有方法用于调度值::reify
以下是一个失败的测试用例
`
(ns core-typed-bug.core
(:require [clojure.core.typed :refer :all]))
(ann-protocol ITypedTest
get-data [ITypedTest -> Any])
(defprotocol> ITypedTest
(get-data [this]))
(ann typed-test [String -> ITypedTest])
(defn typed-test [input]
(reify ITypedTest
(get-data [_] input)))
(defn> testfn :- Any
[asdf :- Keyword, in :- ITypedTest]
(get-data in))
`
可能在bug (链接: http://dev.clojure.org/jira/browse/CTYP-132 文本:CTYP-132) 中类似。
分支:https://github.com/clojure/core.typed/pull/28/files