Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
invertIfCondition
/
isEmpty.kt
blob: e2bbfef1010a5489a92331ab1bc1a300601b89a6 [
file
]
// WITH_RUNTIME
fun foo
(
i
:
Int
)
{}
fun test
(
s
:
String
)
{
<caret>
if
(
s
.
isEmpty
())
{
foo
(
1
)
}
else
{
foo
(
2
)
}
}