[FIR TEST] Update test data due to hardened receiver check (NB: broken)

In particular, nullable invoke extension call and some smart casts
are broken here
This commit is contained in:
Mikhail Glukhikh
2020-02-03 13:41:30 +03:00
parent 7dca4d2fee
commit 22068dd6ad
5 changed files with 11 additions and 13 deletions
@@ -3,5 +3,5 @@ fun bar(doIt: Int.() -> Int) {
1?.doIt()
val i: Int? = 1
i.<!INAPPLICABLE_CANDIDATE!>doIt<!>()
i?.doIt()
i?.<!INAPPLICABLE_CANDIDATE!>doIt<!>()
}