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

15 lines
323 B
Plaintext
Vendored

// "Replace with 'newFun(p4, p3, p2, p1, p0)'" "true"
@Deprecated("", ReplaceWith("newFun(p4, p3, p2, p1, p0)"))
fun oldFun(p0: Int, p1: Int, p2: Int, p3: Int, p4: Int){}
fun newFun(p4: Int, p3: Int, p2: Int, p1: Int, p0: Int){}
fun foo() {
newFun(/* 4 */ 4, 3, 2, // 2
/* 1 */ 1,
/* 0 */ 0
)
}