Skip to content
7 changes: 7 additions & 0 deletions framework/tests/viewpointtest/GenericSelfContainedCrash.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
public class GenericSelfContainedCrash {
interface Box<E> {}

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

protected BoxImpl<Integer> field;
}
Loading