mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 08:31:35 +00:00
9 lines
140 B
Kotlin
Vendored
9 lines
140 B
Kotlin
Vendored
fun test(): Int {
|
|
<selection>val foo = 1
|
|
fun bar() = 2
|
|
|
|
return when (foo) {
|
|
1 -> 1
|
|
else -> 2
|
|
}</selection>
|
|
} |