mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
13 lines
181 B
Kotlin
Vendored
13 lines
181 B
Kotlin
Vendored
// "Replace usages of 'oldFun(Int): Unit' in whole project" "true"
|
|
|
|
import newPack.newFun
|
|
|
|
fun foo() {
|
|
<caret>newFun(0 + 1)
|
|
newFun(2 + 1)
|
|
}
|
|
|
|
fun bar() {
|
|
newFun(3 + 1)
|
|
}
|