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

22 lines
267 B
Kotlin

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