Remove some unjustified usages of TypeParameterDescriptor#getUpperBoundsAsType

This commit is contained in:
Alexander Udalov
2015-10-22 23:14:56 +03:00
parent 426bddb54e
commit bed75e8af2
7 changed files with 39 additions and 22 deletions
@@ -9,8 +9,8 @@ public interface A {
public interface B : A {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public abstract fun </*0*/ T> foo(): kotlin.Unit where T : kotlin.Cloneable
public abstract override /*1*/ /*fake_override*/ fun </*0*/ T : kotlin.Any> foo(): kotlin.Unit where T : kotlin.Cloneable?
public abstract fun </*0*/ T> foo(): kotlin.Unit where T : kotlin.Cloneable
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}