mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
251 B
Java
Vendored
12 lines
251 B
Java
Vendored
package test;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
import test.kotlin.*;
|
|
|
|
public class TopLevelFunctionInDataFlowInspection {
|
|
void other(@NotNull Object some) {
|
|
Object foo = TopLevelFunctionInDataFlowInspectionKt.foo(some);
|
|
}
|
|
}
|
|
|