FIR: Support safe-calls new format in body resolution

^KT-38444 In Progress
This commit is contained in:
Denis Zharkov
2020-06-01 15:24:16 +03:00
parent 755b846877
commit 7ba1371466
18 changed files with 250 additions and 55 deletions
@@ -0,0 +1,9 @@
interface A
fun test_1(a: A?, convert: A.() -> String) {
val s = a?.convert()
}
fun test_2(a: A, convert: A.() -> String) {
val s = a.convert()
}