29 lines
347 B
Plaintext
29 lines
347 B
Plaintext
// FILE: rootPackage.kt
|
|
class ~k~Klass {
|
|
}
|
|
|
|
fun ~f~function() = ""
|
|
|
|
val ~p~property = ""
|
|
|
|
// FILE: anotherFromRootPackage.kt
|
|
fun foo() {
|
|
`k`Klass()
|
|
`f`function()
|
|
`p`property
|
|
}
|
|
|
|
// FILE: otherPackage.kt
|
|
package test
|
|
|
|
import `!`Klass
|
|
import `!`function
|
|
import `!`property
|
|
|
|
fun foo() {
|
|
`!`Klass()
|
|
`!`function()
|
|
`!`property
|
|
}
|
|
|