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

17 lines
474 B
Plaintext

//FILE:mainFile.kt
//----------------------------------------------------------------------------------
package test
import testing.*
val a1: `fromOtherPackage`TestClass? = null
//FILE:fromRoot.kt
//----------------------------------------------------------------------------------
trait ~fromRoot~TestClass
//FILE:fromOtherPackage.kt
//----------------------------------------------------------------------------------
package testing
trait ~fromOtherPackage~TestClass