mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
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
17 lines
468 B
Plaintext
Vendored
17 lines
468 B
Plaintext
Vendored
package test
|
|
|
|
public fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
|
|
|
public object A {
|
|
private constructor A()
|
|
@kotlin.jvm.JvmStatic public final val b: kotlin.String
|
|
@get:kotlin.jvm.JvmStatic @set:kotlin.jvm.JvmStatic public final var test.A.c: kotlin.String
|
|
}
|
|
|
|
public/*package*/ open class Test {
|
|
public/*package*/ constructor Test()
|
|
|
|
// Static members
|
|
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
|
}
|