Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/multiLineWithOneLineInitializer.kt.after
T
2020-09-09 22:31:56 +07:00

8 lines
90 B
Plaintext
Vendored

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