blob: 61ec7a4bf62e5634201c78da7e090d808827a7bc [file]
// RUN_PIPELINE_TILL: FRONTEND
fun bar(doIt: Int.() -> Int) {
1.doIt()
1<!UNNECESSARY_SAFE_CALL!>?.<!>doIt()
val i: Int? = 1
i.<!UNSAFE_IMPLICIT_INVOKE_CALL!>doIt<!>()
i?.doIt()
}
/* GENERATED_FIR_TAGS: functionDeclaration, functionalType, integerLiteral, localProperty, nullableType,
propertyDeclaration, safeCall, typeWithExtension */