17 lines
256 B
Plaintext
Vendored
17 lines
256 B
Plaintext
Vendored
class A {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* InstanceInitializerCall */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fun test() {
|
|
A::class /*~> Unit */
|
|
A()::class /*~> Unit */
|
|
A::class.<get-java><A>() /*~> Unit */
|
|
A()::class.<get-java><A>() /*~> Unit */
|
|
}
|
|
|