8 lines
123 B
Kotlin
Vendored
8 lines
123 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// DUMP_CFG
|
|
import kotlin.reflect.KClass
|
|
|
|
fun test(x: String): KClass<*> {
|
|
return x.let { it::class }
|
|
}
|