We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Related to #512:
(defprotocol Foo (sayhello [_ name] "print a name")) (defrecord Greeter [x y] Foo (sayhello [_ x] x)) (prn (sayhello (Greeter. "x" "y") "john"))
This returns "x" in sci, but "john" in clojure.
"x"
"john"
The text was updated successfully, but these errors were encountered:
[#513] Shadowing record field names in protocol functions
a2969bd
No branches or pull requests
Related to #512:
This returns
"x"
in sci, but"john"
in clojure.The text was updated successfully, but these errors were encountered: