2d1abda9a1
Also includes minor test fix, related to KT-14900
16 lines
386 B
Kotlin
Vendored
16 lines
386 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test(x: Any) {
|
|
var res: String
|
|
<caret>when (x) {
|
|
is String ->
|
|
if (x.length > 3) res = "long string"
|
|
else res = "short string"
|
|
is Int ->
|
|
if (x > 999 || x < -99) res = "long int"
|
|
else res = "short int"
|
|
is Long ->
|
|
TODO()
|
|
else ->
|
|
res = "I don't know"
|
|
}
|
|
} |