Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
mergeIfs
/
else2.kt
blob: 3401aa33bda85d376d4aea46e0c88f6c1563e55f [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
fun foo
()
{
<caret>
if
(
true
)
{
if
(
false
)
{
foo
()
}
else
{
}
}
}