12 lines
172 B
Plaintext
12 lines
172 B
Plaintext
fun foo() {
|
|
val a = 1
|
|
// SIBLING:
|
|
fun b1(): Boolean {
|
|
return a > 0
|
|
}
|
|
|
|
if (b1()) {
|
|
fun b(): Int { return 0 }
|
|
println(b())
|
|
}
|
|
} |