package test

public interface SubclassOfMapEntry</*0*/ K, /*1*/ V> : kotlin.collections.MutableMap.MutableEntry<K, V> {
    public abstract override /*1*/ /*fake_override*/ val key: K
        public abstract override /*1*/ /*fake_override*/ fun `<get-key>`(): K
    public abstract override /*1*/ val value: V
        public abstract override /*1*/ fun `<get-value>`(): V
    public abstract override /*1*/ fun setValue(/*0*/ value: V): V
}
