b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
14 lines
177 B
Kotlin
Vendored
14 lines
177 B
Kotlin
Vendored
object A {
|
|
private constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fun test() {
|
|
A::class /*~> Unit */
|
|
A::class.<get-java><A>() /*~> Unit */
|
|
}
|