| // RUN_PIPELINE_TILL: FRONTEND | |
| fun bar(doIt: Int.() -> Int) { | |
| 1.doIt() | |
| 1<!UNNECESSARY_SAFE_CALL!>?.<!>doIt() | |
| val i: Int? = 1 | |
| i<!UNSAFE_CALL!>.<!>doIt() | |
| i?.doIt() | |
| } | |
| /* GENERATED_FIR_TAGS: functionDeclaration, functionalType, integerLiteral, localProperty, nullableType, | |
| propertyDeclaration, safeCall, typeWithExtension */ |