12 lines
146 B
Kotlin
Vendored
12 lines
146 B
Kotlin
Vendored
package test
|
|
|
|
import test.Host.foo
|
|
|
|
object Host {
|
|
inline fun <reified T> foo(): String {
|
|
return "OK"
|
|
}
|
|
}
|
|
|
|
fun test() = foo<Any>()
|