Fixed regression in rendering generic types upper bounds.

This commit is contained in:
Michał Sapalski
2013-04-09 15:19:09 +02:00
committed by Andrey Breslav
parent a8f43d1e47
commit d875bf80cb
5 changed files with 12 additions and 8 deletions
@@ -4,7 +4,7 @@ trait Trait {
class TraitImpl : Trait {
override fun <A, B, E: Map.Entry<A, B>> foo() where B: Runnable, B: Cloneable, B: Comparable<B> {
override fun <A, B: Runnable, E: Map.Entry<A, B>> foo() where B: Cloneable, B: Comparable<B> {
throw UnsupportedOperationException()
}
}