Created
May 15, 2023 20:25
-
-
Save bseib/f1eadf003de87fd7486afe3652fa124c to your computer and use it in GitHub Desktop.
IntelliJ IDE gives incorrect warning: "Condition 'list.size > 0' is always false"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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