package test

public trait SubclassOfMapEntry</*0*/ K, /*1*/ V> : kotlin.MutableMap.MutableEntry<K, V> {
    public abstract override /*1*/ /*fake_override*/ fun getKey(): K
    public abstract override /*1*/ /*fake_override*/ fun getValue(): V
    public abstract override /*1*/ fun setValue(/*0*/ value: V): V
}