5f59de23c5
^KT-57433 Fixed
14 lines
164 B
Kotlin
Vendored
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>()
|