mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-15 00:21:28 +00:00
10 lines
142 B
Plaintext
Vendored
10 lines
142 B
Plaintext
Vendored
fun foo() {
|
|
val a = 1
|
|
// SIBLING:
|
|
fun b1() = a > 0
|
|
|
|
if (b1()) {
|
|
fun b(): Int { return 0 }
|
|
println(b())
|
|
}
|
|
} |