Files
kotlin-fork/compiler/testData/compileJavaAgainstKotlin/jvmStatic/simpleCompanionObjectProperty.txt
T
Alexander Udalov d1e1e274d9 Render property accessor annotations in .txt test data
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
2018-10-24 18:17:12 +02:00

21 lines
567 B
Plaintext
Vendored

package test
public fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
public final class A {
public constructor A()
public companion object Companion {
private constructor Companion()
@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
}