Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
targetedBuiltIns
/
optionalGetOrNullOnStarProjection.kt
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
()