Files
kotlin-fork/compiler/testData/lazyResolve/recursiveComparator/importFunctionWithAllUnderImport.kt
T
2014-03-02 19:55:26 +04:00

14 lines
234 B
Kotlin

// FILE: importFunctionWithAllUnderImport.kt
package test
import testOther.*
class B: A()
val inferTypeFromImportedFun = testFun()
// FILE: importFunctionWithAllUnderImportOther.kt
package testOther
open class A
fun testFun() = 1