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
}
