KT-6795 J2K: When converting to type with projections, omit redundant use-site projections

#KT-6795 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-03-30 13:50:23 +03:00
parent 7e50f72d5b
commit c66b20b204
11 changed files with 19 additions and 9 deletions
@@ -4,7 +4,7 @@ import kotlinApi.KotlinClass
public abstract class C(field: Int) : KotlinClass(field) {
override fun foo(mutableCollection: MutableCollection<String>, nullableCollection: Collection<out Int>?): MutableList<Any> {
override fun foo(mutableCollection: MutableCollection<String>, nullableCollection: Collection<Int>?): MutableList<Any> {
return super.foo(mutableCollection, nullableCollection)
}
}