-
Notifications
You must be signed in to change notification settings - Fork 418
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
False negative on "unused return values" ? #36
Comments
Thanks for reporting this, it indeed looks like a bug! 👍 I will look into it! |
rrrene
added a commit
that referenced
this issue
Feb 1, 2016
These reproduce bugs discovered while researching the reasons for #36
Bugfix is live in |
Thanks for such a quick fix. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi. The code at photomattmills/ecto_neo4j#4 reports a warning:
That I believe is incorrect. The context is a value returned from an if check being the last evaluated expression in a function:
It looks like the presence of the
[nil]
andend
lines below theEnum.map/2
is confusing it into thinking that there are additional expressions leading themap
value to be discarded.The text was updated successfully, but these errors were encountered: