We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 536e58d commit eb21a9eCopy full SHA for eb21a9e
src/test/java/com/fasterxml/jackson/failing/NestedTypes1604Test.java
@@ -38,12 +38,15 @@ public DataList(List<T> data) {
38
}
39
40
41
- public static class RefinedDataList<T> extends Data<List<T>> {
+ // And then add one level between types
42
+ public static class RefinedDataList<T> extends DataList<T> {
43
public RefinedDataList(List<T> data) {
44
super(data);
45
46
47
48
+ // And/or add another type parameter that is not relevant (less common
49
+ // but potential concern)
50
public static class SneakyDataList<BOGUS,T> extends Data<List<T>> {
51
public SneakyDataList(List<T> data) {
52
0 commit comments