Files
kotlin-fork/compiler/testData/ir/irText/expressions/funImportedFromObject.kt.txt
T
2020-11-26 00:14:25 +03:00

20 lines
233 B
Plaintext
Vendored

package test
object Host {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
inline fun <reified T : Any?> foo(): String {
return "OK"
}
}
fun test(): String {
return Host.foo<Any>()
}