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()
}
}