mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
21 lines
557 B
Plaintext
Vendored
21 lines
557 B
Plaintext
Vendored
package test
|
|
|
|
private const val topLevel: kotlin.Int = 1
|
|
private fun <get-topLevel>(): kotlin.Int
|
|
|
|
public object A {
|
|
/*primary*/ private constructor A()
|
|
internal const final val inObject: kotlin.Int = 2
|
|
internal final fun <get-inObject>(): kotlin.Int
|
|
}
|
|
|
|
public final class B {
|
|
/*primary*/ public constructor B()
|
|
|
|
public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
public const final val inCompanion: kotlin.Int = 3
|
|
public final fun <get-inCompanion>(): kotlin.Int
|
|
}
|
|
}
|