mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
multiple jdks test of correct check of inheritance when super type has unknown type in type argument list
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
package p;
|
||||
import java.util.stream.Stream;
|
||||
import java.util.List;
|
||||
|
||||
public abstract class A implements List<Stream<String>> {
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package p;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
public abstract class A implements Stream<String> {
|
||||
}
|
||||
Reference in New Issue
Block a user