mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
17 lines
392 B
Plaintext
Vendored
17 lines
392 B
Plaintext
Vendored
package test
|
|
|
|
public interface Test {
|
|
|
|
public companion object Companion {
|
|
private constructor Companion()
|
|
public const final val valProp: kotlin.Int
|
|
}
|
|
}
|
|
|
|
public/*package*/ open class staticTraitProperty {
|
|
public/*package*/ constructor staticTraitProperty()
|
|
|
|
// Static members
|
|
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
|
}
|