mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
13 lines
155 B
Kotlin
Vendored
13 lines
155 B
Kotlin
Vendored
fun foo() {
|
|
<caret>when (f1()) {
|
|
true -> f2()
|
|
else -> {
|
|
f2()
|
|
}
|
|
}
|
|
}
|
|
|
|
fun f1() = true
|
|
fun f2() {}
|
|
|
|
// EXISTS: f1() |