Files
kotlin-fork/compiler/testData/ir/irText/expressions/funImportedFromObject.kt
T
2023-06-02 10:05:34 +00:00

14 lines
164 B
Kotlin
Vendored

// FIR_IDENTICAL
package test
import test.Host.foo
object Host {
inline fun <reified T> foo(): String {
return "OK"
}
}
fun test() = foo<Any>()