mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
13 lines
158 B
Plaintext
Vendored
13 lines
158 B
Plaintext
Vendored
fun test(): Int {
|
|
return i()
|
|
}
|
|
|
|
private fun i(): Int {
|
|
val foo = 1
|
|
fun bar() = 2
|
|
|
|
return when (foo) {
|
|
1 -> 1
|
|
else -> 2
|
|
}
|
|
} |