Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
inspectionsLocal
/
nullChecksToSafeCall
/
unstableChain.kt
blob: 2f7e2b00783790a60f4ca0fc87ec6d805c6898ae [
file
] [
log
] [
blame
]
// PROBLEM: none
var
a
:
Testtt
?
=
Testtt
()
fun main
(
args
:
Array
<
String
>)
{
if
(
a
<caret>
!=
null
&&
a
?.
a
!=
null
)
{
}
}
class
Testtt
{
val a
:
Testtt
?
=
null
}