3d9d6e666d
(cherry picked from commit 1ea9280)
15 lines
234 B
Kotlin
Vendored
15 lines
234 B
Kotlin
Vendored
fun foo(x: Int) {
|
|
when (x) {
|
|
21 -> foo(x)
|
|
42 -> foo(x)
|
|
else -> foo(x)
|
|
}
|
|
|
|
val t = when (x) {
|
|
21 -> foo(x)
|
|
42 -> foo(x)
|
|
else -> foo(x)
|
|
}
|
|
}
|
|
|
|
// 2 3 4 5 6 +8 9 10 11 8 13 |