Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recur arity error in protocol method implementations incorrectly reported #1714

Closed
borkdude opened this issue Jun 2, 2022 · 0 comments
Closed

Comments

@borkdude
Copy link
Member

borkdude commented Jun 2, 2022

Repro:

(defprotocol IFoo (-foo [_]))
(defrecord Foo [] IFoo (-foo [x] (recur)))
(deftype Foo [] java.lang.Runnable (run [this] (recur)))
(reify IFoo (-foo [_] (recur)))

Clj-kondo should have a recur arity of one less, the this is implicit in the recur

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant