mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
multiple jdks/not exported dependencies: check that declared type of the qualifier doesn't contain unknown types
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
package p;
|
||||
abstract class B {
|
||||
void f(A a) {
|
||||
<error descr="Cannot access java.util.stream.Stream">a</error>.foo();
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package p;
|
||||
import java.util.stream.Stream;
|
||||
import java.util.List;
|
||||
|
||||
public abstract class A implements List<Stream<String>> {
|
||||
public void foo() {}
|
||||
}
|
||||
Reference in New Issue
Block a user