Files
kotlin-fork/compiler/testData/ir/irText/expressions/funImportedFromObject.kt
T

13 lines
163 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>()