mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
101 B
Kotlin
8 lines
101 B
Kotlin
fun fn(b: Boolean) {
|
|
var d: Double? = null
|
|
if (b) {
|
|
d = 1.0
|
|
}
|
|
println(d!!)
|
|
}
|