Files
kotlin-fork/idea/testData/quickfix/addInline/local.kt
T
Vyacheslav Gerasimov 199bff7e70 Add quickfix for 'Illegal inline parameter modifier'
Adds inline to function if crossinline is used on parameter

#KT-14046 Fixed
2017-04-20 12:09:53 +03:00

10 lines
250 B
Kotlin
Vendored

// "Add 'inline' to function 'foo'" "false"
// ACTION: Convert to expression body
// ERROR: Modifier 'crossinline' is allowed only for function parameters of an inline function
fun bar() {
fun foo(<caret>crossinline body: () -> Unit) {
}
}