Fix type argument mapping for members imported from objects
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package test
|
||||
|
||||
import test.Host.foo
|
||||
|
||||
object Host {
|
||||
inline fun <reified T> foo(): String {
|
||||
return "OK"
|
||||
}
|
||||
}
|
||||
|
||||
fun test() = foo<Any>()
|
||||
Reference in New Issue
Block a user