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