blob: c5294e80f835a3b9b2f1c92a72b499a7a9b400ff [file]
// RUN_PIPELINE_TILL: BACKEND
import kotlin.reflect.KClass
class SomeClass
inline fun <reified K> foo(klass: KClass<*>): K = null!!
val some: Map<String, String> by lazy {
SomeClass::class.let {
foo(it)
}
}
/* GENERATED_FIR_TAGS: checkNotNullCall, classDeclaration, classReference, functionDeclaration, inline, lambdaLiteral,
nullableType, propertyDeclaration, propertyDelegate, reified, starProjection, typeParameter */