Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
invertIfCondition
/
binaryExpression.kt
blob: 560f931d24a4d0d1e1d32c968c89630206113916 [
file
] [
log
] [
blame
]
fun foo
():
Boolean
{
return
true
}
fun main
()
{
<caret>
if
(
foo
()
&&
foo
())
{
foo
()
}
else
{
foo
()
}
}