Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ median of four warm-daemon reps per side).

**Closed issues:**

eisop#433, eisop#792, eisop#863, eisop#1801.
eisop#433, eisop#786, eisop#792, eisop#863, eisop#1801.


Version 3.49.5-eisop1 (April 26, 2026)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -930,13 +930,13 @@ public QualifierPolymorphism getQualifierPolymorphism() {
@Override
protected void postDirectSuperTypes(
AnnotatedTypeMirror type, List<? extends AnnotatedTypeMirror> supertypes) {
super.postDirectSuperTypes(type, supertypes);
if (type.getKind() == TypeKind.DECLARED) {
for (AnnotatedTypeMirror supertype : supertypes) {
Element elt = ((DeclaredType) supertype.getUnderlyingType()).asElement();
addComputedTypeAnnotations(elt, supertype);
}
}
super.postDirectSuperTypes(type, supertypes);
}

/**
Expand Down
9 changes: 9 additions & 0 deletions framework/tests/viewpointtest/GenericSelfContainedCrash.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Test case for EISOP issue #786:
// https://github.com/eisop/checker-framework/issues/786
public class GenericSelfContainedCrash {
interface Box<E> {}

static class BoxImpl<E> implements Box<E> {}

protected BoxImpl<Integer> field;
}
Loading