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

17 lines
356 B
Plaintext

//FILE:sameFile.kt
//----------------------------------------------------------------------------------
package test
import testing.TestClass
class ~same-file~TestClass
val a1: `same-file`TestClass? = null
//FILE:testing.kt
//----------------------------------------------------------------------------------
package testing
class ~testing~TestClass