FIR: Update test data (delegate inference)

Changed data looks correct
This commit is contained in:
Denis.Zharkov
2021-04-27 18:27:50 +03:00
committed by teamcityserver
parent 7c5c744e87
commit 010a0c6cdc
3 changed files with 4 additions and 4 deletions
@@ -21,6 +21,6 @@ class D : A<Int> by baz({ it + 1 })
fun <T> boo(t: T): A<T> = AImpl()
class E : A<Int> by boo("")
class E : A<Int> by <!TYPE_MISMATCH, TYPE_MISMATCH!>boo("")<!>
class F : A<Int> by AImpl<String>()
class F : A<Int> by <!TYPE_MISMATCH, TYPE_MISMATCH, TYPE_MISMATCH!>AImpl<String>()<!>