FIR: resolve conflicts on multiple inheritance of fun with same signature

This commit is contained in:
Simon Ogorodnik
2019-04-23 04:21:11 +03:00
committed by Mikhail Glukhikh
parent 84fbf4ec25
commit 6a0e3371ae
8 changed files with 155 additions and 78 deletions

View File

@@ -1,6 +1,4 @@
public abstract interface SubclassOfMapEntry<K, V> : R|java/util/Map.Entry<K, V>| {
public abstract operator fun setValue(value: R|ft<V, V?>|!): R|ft<V, V?>|!
public abstract operator fun setValue(<anonymous Java parameter>: R|ft<V, V?>|!): R|ft<V, V?>|!
}