blob: e03a82adcb7525016b4793c7d7b7f0c4b7f58400 [file]
class A {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
fun test() {
A::class /*~> Unit */
A()::class /*~> Unit */
A::class.<get-java><A>() /*~> Unit */
A()::class.<get-java><A>() /*~> Unit */
}