mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
231 B
Java
Vendored
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);
|
|
}
|
|
}
|
|
|