Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inference
/
genericsWithUnmatchedNullabilityNested.kt
blob: 7cfa8d6f88d74654ba3656bb7f228c5e02b20d67 [
file
]
// FIR_IDENTICAL
// ISSUE: KT-67912
// WITH_STDLIB
interface
Bound
inline
fun
<
reified F
:
Bound
>
foo
(
key
:
String
):
F
?
=
null
fun main
()
{
val value
:
Map
<
String
,
String
>
=
requireNotNull
(
foo
(
""
)
)
}