-
Notifications
You must be signed in to change notification settings - Fork 19
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
PolyNull Object as receiver error #532
Comments
This came up here: #525 (comment) . Try to keep references between different issues and PRs, to make the history easier to follow. It's noteworthy here that a different error is issued for |
Thanks, already added. |
For a simpler case without dataflow refinement, I think we are still expecting to dereference possible-null reference errors because of soundness.
|
Yes, directly dereferencing a |
In this code snippet, the expected error is
dereferenc of possibly-null reference nbl
. However, amethod invocation invalid
error is also raised.Error message is listing for reference:
Another code snippet with
@Nullable
annotation isAnd the corresponding error message are listing below
The text was updated successfully, but these errors were encountered: