mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
23 lines
537 B
Plaintext
Vendored
23 lines
537 B
Plaintext
Vendored
package test
|
|
|
|
public open class PrivateMembers {
|
|
private constructor PrivateMembers()
|
|
private final var field: kotlin.Int
|
|
private open fun method(): kotlin.Unit
|
|
|
|
private open inner class Inner {
|
|
private constructor Inner()
|
|
}
|
|
|
|
private open class Nested {
|
|
private constructor Nested()
|
|
|
|
// Static members
|
|
private open fun staticMethodInNested(): kotlin.Unit
|
|
}
|
|
|
|
// Static members
|
|
private final var staticField: kotlin.Int
|
|
private open fun staticMethod(): kotlin.Unit
|
|
}
|