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

17 lines
482 B
Plaintext
Vendored

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