Files
kotlin-fork/compiler/testData/codegen/boxInline/property/reifiedVal.kt
T
2016-06-28 10:12:15 +03:00

15 lines
208 B
Kotlin
Vendored

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