Files
kotlin/compiler/testData/codegen/boxWithJava/builtinStubMethods/extendJavaCollections/extendJavaCollections.kt
2015-10-14 20:39:35 +03:00

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"
}