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

11 lines
249 B
Java
Vendored

package test;
import org.jetbrains.annotations.NotNull;
import test.kotlin.*;
public class TopLevelFunctionWithNameSimilarToPropertyInDataFlowInspection {
void other(@NotNull Object some) {
Object foo = (new Test()).foo(some);
}
}