Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/parameters.kt.after
T
2015-09-04 18:19:31 +03:00

12 lines
221 B
Plaintext
Vendored

// "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)
}