| // RUN_PIPELINE_TILL: BACKEND | |
| // FIR_IDENTICAL | |
| // FULL_JDK | |
| import java.util.* | |
| fun foo(o: Optional<String>) {} | |
| class Test(nullable: String?) { | |
| private val nullableOptional = Optional.ofNullable(nullable) | |
| fun doIt() { | |
| foo(nullableOptional) | |
| } | |
| } | |
| /* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, javaFunction, nullableType, primaryConstructor, | |
| propertyDeclaration */ |