Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f9ad0c0bf79eab445d91c2baa5ab471640e811f
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
inference
/
mapNotNullWithElvis.kt
blob: 39868fcd2b0e7cb2922c68763aa9044c5f98d948 [
file
]
// FIR_IDENTICAL
// ISSUE: KT-68667
fun foo
(
list
:
List
<
List
<
String
>?>)
{
val some
=
list
.
mapNotNull
{
it
?:
arrayListOf
()
}
}