Resolve function references independently of target type

KT-7564 AbstractDiagnosticsTest.checkAllResolvedCallsAreCompleted() fails on tests with function references
 #KT-7564 Fixed
This commit is contained in:
Svetlana Isakova
2015-04-27 13:20:29 +03:00
parent 5ee17c0c26
commit 4f0d541493
4 changed files with 33 additions and 1 deletions
@@ -0,0 +1,12 @@
import kotlin.reflect.*
fun <T> checkSubtype(t: T) = t
class A(var g: A) {
val f: Int = 0
fun test() {
checkSubtype<KMemberProperty<A, Int>>(::f)
checkSubtype<KMutableMemberProperty<A, A>>(::g)
}
}