Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/inBinaryExpression.kt.after
T
2019-06-14 15:28:06 +07:00

8 lines
123 B
Plaintext
Vendored

fun test() = true
fun foo(): Int {
return when (<caret>test()) {
true -> 42
else -> null
} ?: 55
}