Files
kotlin-fork/idea/testData/copyPaste/moveDeclarations/ChangePackage.kt
T

21 lines
212 B
Kotlin
Vendored

package source
import target.targetPackFun
fun sourcePackFun(){}
<selection>
/* comment 1 */
fun foo() {
sourcePackFun()
targetPackFun()
}
/* comment 2 */
val bar = 10
/* comment 3 */
</selection>