14 lines
235 B
Kotlin
Vendored
14 lines
235 B
Kotlin
Vendored
// 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)
|
|
}
|
|
}
|