mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
14 lines
240 B
Kotlin
Vendored
14 lines
240 B
Kotlin
Vendored
//class MyIterable : Test.IterableImpl()
|
|
//class MyIterator : Test.IteratorImpl()
|
|
class MyMapEntry : Test.MapEntryImpl()
|
|
|
|
fun box(): String {
|
|
|
|
val b = MyMapEntry()
|
|
b.getKey()
|
|
b.getValue()
|
|
b.setValue(null)
|
|
|
|
return "OK"
|
|
}
|