Files
kotlin/compiler/testData/loadJava/compiledJava/PrivateMembers.txt
2014-11-11 18:10:43 +03:00

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
}