Files
kotlin-fork/compiler/testData/diagnostics/tests/ExtensionCallInvoke.fir.kt
T

8 lines
169 B
Kotlin
Vendored

fun bar(doIt: Int.() -> Int) {
1.doIt()
1<!UNNECESSARY_SAFE_CALL!>?.<!>doIt()
val i: Int? = 1
i.<!UNSAFE_IMPLICIT_INVOKE_CALL!>doIt<!>()
i?.doIt()
}