Files
kotlin/compiler/testData/diagnostics/tests/ExtensionCallInvoke.kt

8 lines
153 B
Kotlin
Vendored

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