-
Notifications
You must be signed in to change notification settings - Fork 437
Fix RLC unsoundness with explicit @MustCallUnknown annotation
#6994
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
Open
kelloggm
wants to merge
19
commits into
typetools:master
Choose a base branch
from
kelloggm:6990
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
137224c
fix 6990
kelloggm 6b2a991
Merge branch 'master' of https://github.com/typetools/checker-framewo…
kelloggm 32e26b5
ignore excess warning on crash test
kelloggm aae6acd
annotations to remove false positives
kelloggm 46a6d25
Merge branch 'master' of https://github.com/typetools/checker-framewo…
kelloggm 0a8b1b9
Add Javadoc
mernst 3ea4497
Merge branch 'master' into 6990
mernst e721baf
Merge branch 'master' of https://github.com/typetools/checker-framewo…
kelloggm 7455157
Merge branch '6990' of github.com:kelloggm/checker-framework into 6990
kelloggm c6e6d94
Update checker/src/main/java/org/checkerframework/checker/initializat…
kelloggm 5149197
Merge branch 'master' into 6990
kelloggm f1c4d32
Merge branch 'master' into 6990
kelloggm 1116a40
Merge branch 'master' of https://github.com/typetools/checker-framewo…
kelloggm 757062a
Merge branch '6990' of github.com:kelloggm/checker-framework into 6990
kelloggm 0b0d74f
add suppressions and annotations to AFU
kelloggm 43deefc
Merge ../checker-framework-branch-master into 6990
mernst ed45a17
Merge ../checker-framework-branch-master into 6990
mernst eeaba89
Merge ../checker-framework-branch-master into 6990
mernst 4558806
Merge branch 'master' into 6990
mernst File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| // test case for https://github.com/typetools/checker-framework/issues/6990 | ||
|
|
||
| import java.io.Closeable; | ||
| import org.checkerframework.checker.mustcall.qual.MustCallUnknown; | ||
| import org.checkerframework.checker.mustcall.qual.Owning; | ||
|
|
||
| public class DropOwning { | ||
|
|
||
| public void f(@Owning Closeable resource) { | ||
| drop(resource); | ||
| } | ||
|
|
||
| // :: error: required.method.not.known | ||
| private void drop(@Owning @MustCallUnknown Object resourceCF6990) {} | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: typetools/checker-framework
Length of output: 2234
Align
V's bound withInitializationStore.Line 62 passes
@MustCall({}) VtoInitializationStore, but line 60 bindsVasCFAbstractValue<V>instead ofCFAbstractValue<@MustCall({}) V>. MirrorInitializationStore's value bound to resolve the annotated type-argument mismatch.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents