Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/keepLineBreaks/simple.kt.after
T
Dmitry Gridin 11a3482970 tests: apply official code style
#KT-38632 Fixed
2020-05-07 12:36:44 +00:00

17 lines
281 B
Plaintext
Vendored

// "Replace with 'newFun(p1, p2, p3)'" "true"
interface X {
@Deprecated("", ReplaceWith("newFun(p1, p2, p3)"))
fun oldFun(p1: Int, p2: Int, p3: Int)
fun newFun(p1: Int, p2: Int, p3: Int)
}
fun foo(x: X) {
x.<caret>newFun(
1,
2,
3
)
}