20 lines
516 B
Plaintext
Vendored
20 lines
516 B
Plaintext
Vendored
//FILE:mainFile.kt
|
|
//----------------------------------------------------------------------------------
|
|
package test
|
|
|
|
import otherPackage.*
|
|
|
|
val a1: `fromSamePackage`TestClass? = null
|
|
|
|
//FILE:fromOtherPackage.kt
|
|
//----------------------------------------------------------------------------------
|
|
package otherPackage
|
|
|
|
interface ~fromOtherPackage~TestClass
|
|
|
|
|
|
//FILE:fromSamePackage.kt
|
|
//----------------------------------------------------------------------------------
|
|
package test
|
|
|
|
class ~fromSamePackage~TestClass |