mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
12 lines
217 B
Kotlin
12 lines
217 B
Kotlin
package test
|
|
|
|
import java.util.AbstractList
|
|
|
|
public open class ModalityOfFakeOverrides : AbstractList<String>() {
|
|
override fun get(index: Int): String {
|
|
return ""
|
|
}
|
|
|
|
override fun size(): Int = 0
|
|
}
|