mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
16 lines
251 B
Kotlin
Vendored
16 lines
251 B
Kotlin
Vendored
// FILE: a.kt
|
|
package p
|
|
|
|
class FilteringSequence
|
|
|
|
// FILE: b.kt
|
|
// SKIP_TXT
|
|
package kotlin.sequences
|
|
|
|
import p.*
|
|
|
|
interface I {
|
|
val v1: FilteringSequence
|
|
val <!EXPOSED_PROPERTY_TYPE!>v2<!>: <!INVISIBLE_REFERENCE!>IndexingSequence<!><String>
|
|
}
|