[NI] Fix exception for type check callable reference against error type

#KT-32029 Fixed
 #EA-145311 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2019-06-17 16:48:28 +03:00
parent 8fe632f52b
commit 7749afb13e
6 changed files with 44 additions and 1 deletions
@@ -0,0 +1,13 @@
// !LANGUAGE: +NewInference
class DTO {
val q: Int = 0
operator fun get(<!UNUSED_PARAMETER!>prop<!>: <!UNRESOLVED_REFERENCE!>KProperty1<!><*, Int>): Int = 0
}
fun foo(intDTO: DTO?, <!UNUSED_PARAMETER!>p<!>: <!UNRESOLVED_REFERENCE!>KProperty1<!><*, Int>) {
if (intDTO != null) {
<!DEBUG_INFO_SMARTCAST!>intDTO<!>[DTO::q]
<!DEBUG_INFO_SMARTCAST!>intDTO<!>.q
}
}