mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
7 lines
129 B
Kotlin
Vendored
7 lines
129 B
Kotlin
Vendored
// TwoOverrides
|
|
class TwoOverrides : Iterable<String> {
|
|
override fun iterator() = null
|
|
|
|
override fun iterator() = null
|
|
}
|