-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move issue 144 and 155 to inferrable directory
Needs this PR is merged, still: https://github.com/opprop/checker- framework-inference/pull/129 This fix also triggered a bug in annotation-tools: typetools/annotation-tools#154
- Loading branch information
1 parent
05721fb
commit fd80a80
Showing
11 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains 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 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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,3 @@ | ||
package bug; | ||
// See Bug.java | ||
public class Bound {} |
This file contains 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,8 @@ | ||
package bug; | ||
|
||
// https://github.com/typetools/annotation-tools/issues/154 | ||
public class Bug<T extends Bound> { | ||
Bound b; | ||
Bug() {} | ||
} | ||
//../annotation-tools/annotation-file-utilities/scripts/insert-annotations-to-source -v -d . testinput/inference/limited-inferrable-afu/0.jaif testinput/inference/limited-inferrable-afu/Bound.java testinput/inference/limited-inferrable-afu/Bug.java |