23 lines
276 B
Plaintext
Vendored
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>()
|
|
}
|
|
|