mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
19 lines
496 B
Plaintext
Vendored
19 lines
496 B
Plaintext
Vendored
package test
|
|
|
|
public final class Test {
|
|
public constructor Test()
|
|
|
|
public companion object Companion {
|
|
private constructor Companion()
|
|
public const final val valProp: kotlin.Int
|
|
@field:kotlin.jvm.JvmField public final var varProp: kotlin.Int
|
|
}
|
|
}
|
|
|
|
public/*package*/ open class staticClassProperty {
|
|
public/*package*/ constructor staticClassProperty()
|
|
|
|
// Static members
|
|
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
|
}
|