Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1579_map_entry.kt
T

20 lines
296 B
Kotlin
Vendored

// FIR_IDENTICAL
//FILE:a.kt
//+JDK
package a
import kotlin.collections.Map.*
fun foo(b : Entry<String, String>) = b
//FILE:b.kt
//+JDK
package b
import kotlin.collections.Map.Entry
fun bar(b : Entry<String, String>) = b
//FILE:c.kt
//+JDK
package c
fun fff(b: Map.Entry<String, String>) = b