Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1579_map_entry.kt
T
2012-09-05 18:55:16 +04:00

19 lines
249 B
Kotlin

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