b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
19 lines
232 B
Plaintext
Vendored
19 lines
232 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>()
|
|
}
|