Signature comparison used to find super functions in SignaturesPropagationData

#KT-4509 Fixed
This commit is contained in:
Andrey Breslav
2014-05-20 19:25:01 +04:00
parent 44849f8504
commit 773cb9efbe
15 changed files with 168 additions and 260 deletions
@@ -2,7 +2,7 @@ class C(x: Int, val y : Int) {
fun initChild(x0: Int) : java.lang.Object {
var x = x0
return object : java.lang.Object() {
override fun toString(): String? {
override fun toString(): String {
x = x + y
return "child" + x
}