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

6 lines
123 B
Kotlin
Vendored

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