Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/callResolution/extensionInvokeAfterSafeCall.kt
T
Denis Zharkov 7ba1371466 FIR: Support safe-calls new format in body resolution
^KT-38444 In Progress
2020-06-03 10:43:37 +03:00

10 lines
156 B
Kotlin
Vendored

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()
}