Files
kotlin-fork/compiler/testData/codegen/boxInline/reified/kt9637_2.2.kt
T

11 lines
137 B
Kotlin
Vendored

package test
import kotlin.reflect.KClass
inline fun <reified T : Any> injectFnc(): KClass<T> = {
T::class
} ()
public class Box