Files
kotlin-fork/idea/testData/inspectionsLocal/unnecessaryVariable/whenSubject.kt
T
2020-02-21 17:30:13 +01:00

7 lines
166 B
Kotlin
Vendored

fun test(value: Any): String {
return when (val <caret>v = value) {
is String -> "$v is String"
is Int -> "$v is Int"
else -> "$v"
}
}