Files
kotlin/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/FunctionInNestedClassInDataFlowInspection.java

12 lines
231 B
Java
Vendored

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);
}
}