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

8 lines
98 B
Plaintext
Vendored

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