Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
inspectionsLocal
/
nullChecksToSafeCall
/
longRightExpression.kt
blob: 3a009c619af2c540af6c6a88be38db4a50635c3e [
file
] [
log
] [
blame
]
// PROBLEM: none
fun main
(
args
:
Array
<
String
>)
{
val a
:
Testtt
?
=
Testtt
()
// Controversial case, better to do nothing here
if
(
a
<caret>
!=
null
&&
a
.
a
?.
a
!=
null
)
{
}
}
class
Testtt
{
val a
:
Testtt
?
=
null
}