The error message is
bq. No method in multimethod 'check' for dispatch value: :reify
The following is a minimal test case which fails:
`
(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))
`
Likely similar to bug (link: http://dev.clojure.org/jira/browse/CTYP-132 text: CTYP-132).
Branch: https://github.com/clojure/core.typed/pull/28/files