12 lines
121 B
Kotlin
12 lines
121 B
Kotlin
import newPack.newFun
|
|
import pack.oldFun
|
|
|
|
fun x() {
|
|
newFun(1 + 1)
|
|
newFun(2 + 1)
|
|
}
|
|
|
|
fun y() {
|
|
newFun(3 + 1)
|
|
}
|