Files
kotlin-fork/compiler/testData/codegen/boxInline/simple/propImportedFromObject.kt
T

23 lines
290 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM
// 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
}