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