mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
10 lines
109 B
Plaintext
Vendored
10 lines
109 B
Plaintext
Vendored
fun test1(): Int {
|
|
return i()
|
|
}
|
|
|
|
private fun i(): Int {
|
|
val foo = 1
|
|
fun bar() = 2
|
|
|
|
return 3
|
|
} |