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

8 lines
193 B
Kotlin
Vendored

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