Files
kotlin-fork/compiler/testData/codegen/regressions/kt887.jet
T
2012-04-03 19:26:28 +04:00

5 lines
199 B
Plaintext

class Book(val name: String) : Comparable<Book> {
public override fun compareTo(other: Book) = name.compareTo(other.name)
}
fun box() = if(Book("239").compareTo(Book("932")) != 0) "OK" else "fail"