e6f4d6e6fa
^KT-65406
24 lines
256 B
Kotlin
Vendored
24 lines
256 B
Kotlin
Vendored
open annotation class SomeAnn : Annotation {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@SomeAnn
|
|
class My {
|
|
init {
|
|
val x: Int = 1
|
|
}
|
|
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|