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

23 lines
276 B
Plaintext
Vendored

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