14 lines
163 B
Kotlin
Vendored
14 lines
163 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FILE: root.kt
|
|
fun testFun() = 12
|
|
|
|
// FILE: otherPackage.kt
|
|
package test
|
|
|
|
fun testFun() = 12
|
|
|
|
// FILE: using.kt
|
|
package test
|
|
|
|
val t = testFun()
|