Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
kotlinAndJavaChecker
/
javaAgainstKotlin
/
FunctionInNestedClassInDataFlowInspection.java
blob: 7ffa7c30f64679628ea43a6204a2a5bbf8d6b61f [
file
]
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
);
}
}