mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
Avoid loading psi for compiled kotlin file if it's possible to get declaration by name from stubs
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package test;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import test.kotlin.A.B.C.C;
|
||||
|
||||
public class FunctionInNestedClassInDataFlowInspection {
|
||||
void other(@NotNull Object some) {
|
||||
Object foo = new C().foo(some);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user