Files
kotlin-fork/backend.native/tests/external/codegen/boxInline/property/reifiedVal.kt
T
2017-03-13 15:31:46 +03:00

17 lines
257 B
Kotlin

// IGNORE_BACKEND: NATIVE
// 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"
}