Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
j2k
/
testData
/
fileOrElement
/
nullability
/
MethodResultComparedWithNull3.java
blob: 7da404b1584f34a2c7005f2d4cb86e6ff106fe42 [
file
] [
log
] [
blame
]
//file
interface
I
{
String
getString
();
}
class
C
{
void
foo
(
I i
)
{
String
result
=
i
.
getString
();
if
(
result
!=
null
)
{
print
(
result
);
}
}
}