[FIR] Implement new bound smartcast algorithm

#KT-36055 Fixed
This commit is contained in:
Dmitriy Novozhilov
2020-02-10 17:14:58 +03:00
parent 40f907ec2f
commit 6735cc8937
103 changed files with 2197 additions and 309 deletions
@@ -10,8 +10,8 @@ class A<out T, in E> {
fun foo(x: A<String, Any?>, cs: CharSequence, ls: List<CharSequence>) {
val y: A<CharSequence, String> = x
y.foo(cs)
val s: String = y.foo(cs, ls)
y.<!INAPPLICABLE_CANDIDATE!>foo<!>(cs)
val s: String = y.<!INAPPLICABLE_CANDIDATE!>foo<!>(cs, ls)
val ls2: List<String> = y.bar()
}