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

17 lines
231 B
Kotlin
Vendored

// "Replace with 'newFun(p, p)'" "true"
@Deprecated("", ReplaceWith("newFun(p, p)"))
fun oldFun(p: Int) {
newFun(p, p)
}
fun newFun(p1: Int, p2: Int){}
fun foo(c: C) {
<caret>oldFun(c.bar)
}
class C {
var bar = 0
}