d08b18f5f8
Converted from the relevant intention Reported cases: one-liners, whens Also, more exact caret detection in local inspection tests
9 lines
212 B
Kotlin
Vendored
9 lines
212 B
Kotlin
Vendored
// "Add 'inline' to function 'foo'" "false"
|
|
// ERROR: Modifier 'crossinline' is allowed only for function parameters of an inline function
|
|
|
|
fun bar() {
|
|
fun foo(<caret>crossinline body: () -> Unit) {
|
|
|
|
}
|
|
}
|