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