Removed sorting of upper bounds in renderer.

Removed corresponding test.
This commit is contained in:
Evgeny Gerashchenko
2012-12-28 11:03:44 +04:00
parent 6fa36d330c
commit c041fc8fea
15 changed files with 11 additions and 47 deletions
@@ -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
}
}