Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/stringLiteralUsedTwice.kt.after
T

13 lines
203 B
Plaintext

// "Replace with 'newFun(p, p)'" "true"
@deprecated("", ReplaceWith("newFun(p, p)"))
fun oldFun(p: String) {
newFun(p, p)
}
fun newFun(p1: String, p2: String){}
fun foo() {
newFun("x", "x")
}