13 lines
166 B
Kotlin
Vendored
13 lines
166 B
Kotlin
Vendored
// "Replace usages of 'oldFun(Int): Unit' in whole project" "true"
|
|
|
|
import pack.oldFun
|
|
|
|
fun foo() {
|
|
<caret>oldFun(0)
|
|
oldFun(2)
|
|
}
|
|
|
|
fun bar() {
|
|
oldFun(3)
|
|
}
|