11 lines
172 B
Kotlin
Vendored
11 lines
172 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun <T> doSomething(a: T) {}
|
|
|
|
fun foo() {
|
|
val a = true
|
|
val b = false
|
|
when (<caret>a && b) {
|
|
else -> doSomething("test")
|
|
}
|
|
}
|