Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/parameters.kt.after
T
2015-05-27 16:15:45 +03:00

12 lines
221 B
Plaintext

// "Replace with 'newFun(b, a, null)'" "true"
@deprecated("", ReplaceWith("newFun(b, a, null)"))
fun oldFun(a: Int, b: String) {
}
fun newFun(b: String, a: Int, x: Any?){}
fun foo() {
<caret>newFun("x", 1, null)
}