11 lines
87 B
Kotlin
11 lines
87 B
Kotlin
import pack.oldFun
|
|
|
|
fun x() {
|
|
oldFun(1)
|
|
oldFun(2)
|
|
}
|
|
|
|
fun y() {
|
|
oldFun(3)
|
|
}
|