Files
kotlin-fork/idea/testData/quickfix/addInline/basic.kt.after
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

6 lines
101 B
Plaintext
Vendored

// "Add 'inline' to function 'foo'" "true"
inline fun foo(<caret>crossinline body: () -> Unit) {
}