Fix type argument mapping for members imported from objects

This commit is contained in:
Dmitry Petrov
2018-03-21 17:07:03 +03:00
parent 37040523ad
commit bd7e9d5397
6 changed files with 399 additions and 1 deletions
@@ -0,0 +1,11 @@
package test
import test.Host.foo
object Host {
inline fun <reified T> foo(): String {
return "OK"
}
}
fun test() = foo<Any>()