Files
kotlin-fork/compiler/testData/psi/examples/collections/IList.kt
T
2015-06-12 09:55:00 +03:00

4 lines
113 B
Kotlin
Vendored

open class IList<out T> : IIterable<T>, ISized {
@[operator] fun get(index : Int) : T
val isEmpty : Boolean
}