Files
kotlin-fork/compiler/testData/codegen/boxInline/reified/kt6990.2.kt
T
2015-10-30 09:39:09 +03:00

10 lines
208 B
Kotlin
Vendored

package test
public inline fun <reified T : Any> inlineMeIfYouCan(): String? =
{
f {
T::class.java.getName()
}
}()
inline fun f(x: () -> String) = x()