21 lines
212 B
Kotlin
Vendored
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>
|