6752df189d
(cherry picked from commit 2744309)
14 lines
328 B
Plaintext
Vendored
14 lines
328 B
Plaintext
Vendored
// "Replace with 'newFun(p, this)'" "true"
|
|
// ERROR: infix modifier is inapplicable on this function: must be a member of 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>newFun(1, "")
|
|
}
|