Files
kotlin-fork/compiler/testData/codegen/boxInline/property/reifiedVal.kt
T
2021-02-02 17:53:52 +03:00

17 lines
232 B
Kotlin
Vendored

// WITH_RUNTIME
// WITH_REFLECT
// FILE: 1.kt
package test
inline val <reified T: Any> T.value: String
get() = T::class.simpleName!!
// FILE: 2.kt
import test.*
class OK
fun box(): String {
return OK().value ?: "fail"
}