Files
kotlin-fork/compiler/testData/resolve/imports/ImportConflictAllPackage.resolve
T
2013-02-04 14:23:26 +04:00

29 lines
717 B
Plaintext

//FILE:mainToSecond.kt
//----------------------------------------------------------------------------------
package test
import testing.first.*
import testing.second.*
val a1: `second`TestClass? = null
//FILE:mainToFirst.kt
//----------------------------------------------------------------------------------
package test
import testing.second.*
import testing.first.*
val a2: `first`TestClass? = null
//FILE:importFirst.kt
//----------------------------------------------------------------------------------
package testing.first
class ~first~TestClass
//FILE:importSecond.kt
//----------------------------------------------------------------------------------
package testing.second
class ~second~TestClass