Files
codeql/java/ql/test-kotlin2/query-tests/SimplifyBoolExpr/SimplifyBoolExpr.kt
2023-11-17 14:07:13 +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")
}
}