JS backend: fix KT-5772 wrong code generated when <,<=,>,>= are used with explicit Comparable type

#KT-5772 Fixed
This commit is contained in:
Michael Nedzelsky
2014-09-18 22:13:21 +04:00
parent 1d71016097
commit bdca7e0e37
8 changed files with 81 additions and 19 deletions
-5
View File
@@ -31,11 +31,6 @@ public trait Runnable {
public open fun run() : Unit;
}
library
public trait Comparable<T> {
public fun compareTo(that: T): Int
}
library
public trait Appendable {
public open fun append(csq: CharSequence?): Appendable