3bca1a50e3
#KT-31362 Fixed
6 lines
123 B
Kotlin
Vendored
6 lines
123 B
Kotlin
Vendored
fun foo(style: Int?): Int {
|
|
val a<caret> = style ?: 0 // comment
|
|
return when (a) { 0 -> 0
|
|
else -> a
|
|
}
|
|
} |