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