Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
inspectionsLocal
/
nullChecksToSafeCall
/
function.kt
blob: 55ea1103ddc73f598e786662a6374bfde61314af [
file
] [
log
] [
blame
]
class
My
{
fun foo
():
String
?
=
null
}
fun test
(
my
:
My
?)
{
if
(<
caret
>
my
!=
null
&&
my
.
foo
()
!=
null
)
{}
}