0134b8819b
#KT-11734 Fixed #KT-13570 Fixed
16 lines
216 B
Kotlin
Vendored
16 lines
216 B
Kotlin
Vendored
const val A = 10
|
|
private const val B = 20
|
|
|
|
object Constants {
|
|
const val C = 30
|
|
}
|
|
|
|
fun foo(state: Int) {
|
|
when (state) {
|
|
A -> return
|
|
B -> return
|
|
else -> return
|
|
}
|
|
}
|
|
|
|
// 1 LOOKUPSWITCH |