Files
kotlin-fork/compiler/testData/resolve/imports/ImportConflictBetweenImportedAndSamePackage.resolve
T
2015-05-12 19:43:17 +02:00

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