mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 08:31:31 +00:00
32 lines
947 B
Plaintext
32 lines
947 B
Plaintext
package test
|
|
|
|
public open class PrivateMembers {
|
|
private constructor PrivateMembers()
|
|
private final var field: kotlin.Int
|
|
private open fun method(): kotlin.Unit
|
|
private final /*synthesized*/ fun samAdapter(/*0*/ p0: (() -> kotlin.Unit)?): kotlin.Unit
|
|
private open fun samAdapter(/*0*/ p0: test.PrivateMembers.SamInterface?): kotlin.Unit
|
|
|
|
private open inner class Inner {
|
|
private constructor Inner()
|
|
}
|
|
|
|
private open class Nested {
|
|
private constructor Nested()
|
|
}
|
|
|
|
private trait SamInterface {
|
|
public abstract fun foo(): kotlin.Unit
|
|
}
|
|
}
|
|
|
|
package test.PrivateMembers {
|
|
private var staticField: kotlin.Int
|
|
private /*synthesized*/ fun SamInterface(/*0*/ function: () -> kotlin.Unit): test.PrivateMembers.SamInterface
|
|
private open fun staticMethod(): kotlin.Unit
|
|
|
|
package test.PrivateMembers.Nested {
|
|
private open fun staticMethodInNested(): kotlin.Unit
|
|
}
|
|
}
|