c67eb84369
findClass(String, GlobalSearchScope) is invoked for example when we're resolving supertypes of classes in Java libraries. Previously, it never found nested classes and falled back to CoreJavaFileManager's implementation, which lacks a fix for the original issue (KT-12664, which was fixed in JvmDependenciesIndex in5a533a52and164c72e8) #KT-16931 Fixed
8 lines
89 B
Java
Vendored
8 lines
89 B
Java
Vendored
package test;
|
|
|
|
public class Foo {
|
|
public interface Bar {
|
|
void bar();
|
|
}
|
|
}
|