Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
inspectionsLocal
/
nullChecksToSafeCall
/
orCase.kt.after
blob: 1cdb322df759ce832ce435b906d328b68cbc39dc [
file
] [
log
] [
blame
]
fun main
(
args
:
Array
<
String
>)
{
val a
:
Testtt
?
=
Testtt
()
if
(
a
?.
a
?.
a
?.
a
==
null
)
{
}
}
class
Testtt
{
val a
:
Testtt
?
=
null
}