Inaccessible classes from the current package to not conflict with visible classes from somewhere else

This commit is contained in:
Valentin Kipyatkov
2016-01-18 17:17:58 +03:00
parent bfe728526a
commit d749f85a60
6 changed files with 131 additions and 8 deletions
@@ -0,0 +1,15 @@
// FILE: a.kt
package p
class FilteringSequence
// FILE: b.kt
// SKIP_TXT
package kotlin.sequences
import p.*
interface I {
val v1: FilteringSequence
<!EXPOSED_PROPERTY_TYPE!>val v2: <!INVISIBLE_REFERENCE!>IndexingSequence<!><String><!>
}