Files
kotlin-fork/compiler/testData/resolve/imports/ImportConflictBetweenImportedAndSamePackage.resolve
T
2015-01-13 15:02:16 +03:00

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