Files
kotlin-fork/compiler/fir/resolve/testData/resolveWithStdlib/classLiteralForParameter.kt
T
2020-02-14 09:18:52 +03:00

4 lines
88 B
Kotlin
Vendored

inline fun <reified T : Any> foo(t: T): T {
val klass = T::class.java
return t
}