Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/infixCall.kt
T
Alexander Udalov 9be219b69c Check presence of dispatch receiver parameter in modifier checks
Also fix typo in "inapplicable infix" diagnostic message
2016-07-22 18:13:39 +03:00

14 lines
328 B
Kotlin
Vendored

// "Replace with 'newFun(p, this)'" "true"
// ERROR: 'infix' modifier is inapplicable on this function: must be a member or an extension function
@Deprecated("", ReplaceWith("newFun(p, this)"))
infix fun String.oldFun(p: Int) {
newFun(p, this)
}
infix fun newFun(p: Int, s: String){}
fun foo() {
"" <caret>oldFun 1
}