Fixed KT-4892 Override method generates redundant type arguments in call to super

#KT-4892 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-12-05 07:22:42 +03:00
parent 4b9bcce07a
commit 9f845f0de4
21 changed files with 93 additions and 47 deletions
@@ -8,6 +8,6 @@ public open class B() : A() {
public open class C() : B() {
override fun foo() {
<selection><caret>super<B>.foo()</selection>
<selection><caret>super.foo()</selection>
}
}
@@ -4,6 +4,6 @@ import dependency.D
class C: D<Int>() {
override fun id(t: Int): Int {
<selection><caret>return super<D>.id(t)</selection>
<selection><caret>return super.id(t)</selection>
}
}