[FIR] Fix Java override ambiguity (Kotlin type parameter VS Java Object)

This commit is contained in:
Mikhail Glukhikh
2020-02-07 17:01:10 +03:00
parent 4b5f3b7a94
commit dc7621a112
9 changed files with 24 additions and 18 deletions
@@ -18,6 +18,6 @@ fun main(a: A, b: B, c: ArrayList<Int>) {
a.removeAt(0)
b.remove(1)
b.removeAt(0)
c.<!AMBIGUITY!>remove<!>(1)
c.remove(1)
c.removeAt(0)
}