d1e1e274d9
If property accessor rendering is disabled in a test, render annotations on accessors as use-site-targeted, as was done with `@setparam:`-annotations. Otherwise they were lost
16 lines
727 B
Plaintext
Vendored
16 lines
727 B
Plaintext
Vendored
package
|
|
|
|
public fun fn(): kotlin.Unit
|
|
public fun literals(): kotlin.Unit
|
|
|
|
public final class PropertyHolder {
|
|
public constructor PropertyHolder()
|
|
@kotlin.Deprecated(message = "") public final val a1: kotlin.Int = 1
|
|
@kotlin.Deprecated(message = "") public final var a2: kotlin.String
|
|
@get:kotlin.Deprecated(message = "") public final val withGetter: kotlin.String = ""
|
|
@set:kotlin.Deprecated(message = "") public final var withSetter: kotlin.String
|
|
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
|
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
|
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
|
}
|