Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/inProperty.kt
T
2019-03-21 16:32:41 +07:00

9 lines
119 B
Kotlin
Vendored

fun test() = 42
fun foo() {
val a<caret> = test()
val b = when (a) {
1 -> a
else -> 24
}
}