blob: 59cd5ed666c61610482370fb8636ed99f3e410c3 [file] [log] [blame]
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
}