blob: 7cf88c42841602655a09da26a1c370a20287ac13 [file]
// WITH_STDLIB
// FULL_JDK
// FIR_DUMP
// ISSUE: KT-66784
import kotlin.jvm.optionals.getOrNull
val collection: Collection<*> = listOf(1, 2, 3)
val stream = collection.stream()
val first = stream.findFirst()
val result = first.getOrNull()