6c439ae85a
#KT-34744
10 lines
275 B
Kotlin
Vendored
10 lines
275 B
Kotlin
Vendored
// "Add 'inline' to function 'foo'" "false"
|
|
// ACTION: Enable a trailing comma by default in the formatter
|
|
// ERROR: Modifier 'crossinline' is allowed only for function parameters of an inline function
|
|
|
|
fun bar() {
|
|
fun foo(<caret>crossinline body: () -> Unit) {
|
|
|
|
}
|
|
}
|