Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/classCallInLambda.kt
T
2021-07-23 12:20:39 +03:00

8 lines
123 B
Kotlin
Vendored

// WITH_STDLIB
// DUMP_CFG
import kotlin.reflect.KClass
fun test(x: String): KClass<*> {
return x.let { it::class }
}