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
12 lines
564 B
Plaintext
Vendored
12 lines
564 B
Plaintext
Vendored
package
|
|
|
|
public interface Test {
|
|
@get:kotlin.jvm.JvmStatic public abstract val a: kotlin.Int
|
|
@get:kotlin.jvm.JvmName(name = "1") public abstract val b: kotlin.Int
|
|
@get:kotlin.jvm.Synchronized public abstract val c: kotlin.Int
|
|
@get:kotlin.jvm.JvmOverloads public abstract val d: kotlin.Int
|
|
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
|
|
}
|