Removed sorting of upper bounds in renderer.
Removed corresponding test.
This commit is contained in:
@@ -2,5 +2,5 @@ package test
|
||||
|
||||
public open class MissingUpperBound : java.lang.Object {
|
||||
public constructor MissingUpperBound()
|
||||
public open fun </*0*/ A> foo() : jet.String? where A : java.lang.Cloneable?, A : java.lang.Runnable?
|
||||
public open fun </*0*/ A> foo() : jet.String? where A : java.lang.Runnable?, A : java.lang.Cloneable?
|
||||
}
|
||||
|
||||
@@ -3,10 +3,10 @@ package test
|
||||
public trait TwoBounds : java.lang.Object {
|
||||
|
||||
public trait Sub : test.TwoBounds.Super {
|
||||
public abstract override /*1*/ fun </*0*/ B> foo(/*0*/ p0 : B) : Unit where B : java.lang.Cloneable, B : jet.CharSequence
|
||||
public abstract override /*1*/ fun </*0*/ B> foo(/*0*/ p0 : B) : Unit where B : jet.CharSequence, B : java.lang.Cloneable
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun </*0*/ A> foo(/*0*/ p0 : A) : Unit where A : java.lang.Cloneable, A : jet.CharSequence
|
||||
public abstract fun </*0*/ A> foo(/*0*/ p0 : A) : Unit where A : jet.CharSequence, A : java.lang.Cloneable
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user