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