Files
kotlin-fork/compiler/testData/codegen/boxInline/property/reifiedVal.kt
T
2019-04-08 13:10:25 +02:00

16 lines
231 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"
}