Files
kotlin-fork/idea/testData/copyPaste/moveDeclarations/FromObjectToTopLevel.to.expected.kt
T

17 lines
198 B
Kotlin
Vendored

package target
import source.SourceObject
import source.sourcePackFun
fun targetPackFun(){}
fun foo() {
SourceObject.other()
sourcePackFun()
targetPackFun()
bar++
}
var bar = 1