Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
simplifyComparison
/
doubleNull.kt
blob: fab83b68a767b4675a666573d7d199cf138c77bb [
file
]
// "Simplify comparison" "true"
fun foo
(
x
:
String
?)
{
if
(
x
==
null
)
{
}
else
{
if
(<
caret
>
x
==
null
)
{
bar
()
}
}
}
fun bar
()
{}