blob: 229da2d1864e4e0dc445c5da36861485a1ea4ee8 [file] [log] [blame]
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