23 lines
315 B
Kotlin
Vendored
23 lines
315 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
package test
|
|
|
|
import kotlin.reflect.KClass
|
|
|
|
inline fun <reified T : Any> injectFnc(): KClass<T> = {
|
|
T::class
|
|
}.let { it() }
|
|
|
|
public class Box
|
|
|
|
// FILE: 2.kt
|
|
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
val boxClass = injectFnc<Box>()
|
|
if (boxClass != Box::class) return "fail 1"
|
|
|
|
return "OK"
|
|
}
|