Don't report missing getValue/setValue method error when it's was impossible to finish resolve

#KT-9803 Fixed
This commit is contained in:
Nikolay Krasko
2015-11-02 18:23:18 +03:00
parent f518f5fb9f
commit e10f7fb464
5 changed files with 54 additions and 6 deletions
@@ -0,0 +1,20 @@
package
package first {
public operator fun </*0*/ T> first.A.getValue(/*0*/ thisRef: kotlin.Any?, /*1*/ property: kotlin.reflect.KProperty<*>): T
public final class A {
public constructor A()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
}
package second {
public operator fun </*0*/ T> first.A.getValue(/*0*/ thisRef: kotlin.Any?, /*1*/ property: kotlin.reflect.KProperty<*>): T
}
package test {
public val a12: [ERROR : Type from delegate]
}