blob: a418a6f850c77d4eca6309b1e95deed3b8263a6e [file]
// FIR_IDENTICAL
// WITH_STDLIB
// KT-64692
// test data differs - JS stdlib has extra `asJsReadonlyMapView` fakeoverride from `public actual interface Map`.
// IGNORE_BACKEND: JS_IR, JS_IR_ES6
class MyMap : AbstractMap<Int, Int>() {
override val entries = emptySet<Map.Entry<Int, Int>>()
// clash with stdlib internal function
fun containsEntry(entry: Map.Entry<*, *>?) = false
}