Files
kotlin-fork/idea/testData/inspectionsLocal/moveVariableDeclarationIntoWhen/withComment3.kt.after
T
2019-05-23 19:01:24 +07:00

6 lines
118 B
Plaintext
Vendored

fun foo(style: Int?): Int {
return when (val a = style ?: 0) { // comment
0 -> 0
else -> a
}
}