[IR] update testdata: better support for IrCall

This commit is contained in:
Zalim Bashorov
2020-11-06 01:14:47 +03:00
committed by teamcityserver
parent ef2adfa835
commit 197f5ca885
72 changed files with 203 additions and 203 deletions
@@ -9,8 +9,8 @@ private operator fun J.component2(): Int {
fun test() {
// COMPOSITE {
val tmp0_container: @FlexibleNullability J? = j()
val a: Int = component1($receiver = tmp0_container)
val b: Int = component2($receiver = tmp0_container /*!! J */)
val a: Int = tmp0_container.component1()
val b: Int = tmp0_container /*!! J */.component2()
// }
}