Skip to content

Instantly share code, notes, and snippets.

@bseib
Created May 15, 2023 20:25
Show Gist options
  • Save bseib/f1eadf003de87fd7486afe3652fa124c to your computer and use it in GitHub Desktop.
Save bseib/f1eadf003de87fd7486afe3652fa124c to your computer and use it in GitHub Desktop.
IntelliJ IDE gives incorrect warning: "Condition 'list.size > 0' is always false"
package bugs
import kotlin.random.Random.Default.nextBoolean
object IncorrectConditionIsAlwaysFalse {
private fun conditionA() = nextBoolean()
private fun conditionB() = nextBoolean()
data class Action(val list: List<Int>)
fun buildAction(): Action? {
val list = mutableListOf<Int>().apply {
if (conditionA()) {
add(123)
}
if (conditionB()) {
add(456)
}
}
// The IntelliJ IDE will give this warning: "Condition 'list.size > 0' is always false"
return if (list.size > 0) {
Action(list)
}
else null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment