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

11 lines
294 B
Java
Vendored

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