FIR: Support safe-calls new format in body resolution
^KT-38444 In Progress
This commit is contained in:
Vendored
+9
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user