multiple jdks test of correct check of inheritance when super type has unknown type in type argument list

This commit is contained in:
Anna Kozlova
2015-01-22 19:14:32 +01:00
parent cfea16328e
commit e81c0c2c32
5 changed files with 41 additions and 9 deletions
@@ -0,0 +1,6 @@
package p;
import java.util.stream.Stream;
import java.util.List;
public abstract class A implements List<Stream<String>> {
}
@@ -0,0 +1,5 @@
package p;
import java.util.stream.Stream;
public abstract class A implements Stream<String> {
}