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