fbbfb95861
for collecting variable data for pseudocode removed using data from outer context for local declarations for 'variable initializers' analysis
10 lines
118 B
Kotlin
Vendored
10 lines
118 B
Kotlin
Vendored
fun foo() {
|
|
val b: Boolean
|
|
if (1 < 2) {
|
|
b = false
|
|
}
|
|
else {
|
|
b = true
|
|
}
|
|
use(b)
|
|
} |