d08b18f5f8
Converted from the relevant intention Reported cases: one-liners, whens Also, more exact caret detection in local inspection tests
9 lines
103 B
Kotlin
Vendored
9 lines
103 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
fun foo(handler: () -> Unit) { }
|
|
|
|
fun bar() {
|
|
foo { <caret>zoo() }
|
|
}
|
|
|
|
fun zoo(){} |