Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/simple.kt
T
2019-02-14 17:45:53 +03:00

9 lines
111 B
Kotlin
Vendored

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