Files
codeql/java/ql/test-kotlin1/query-tests/SimplifyBoolExpr/SimplifyBoolExpr.kt
2023-11-21 15:28:12 +00:00

14 lines
160 B
Kotlin

fun main() {
f(null)
f(true)
f(false)
}
fun f(x: Boolean?) {
if(x == true) {
println("Yes")
} else {
println("No")
}
}