mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
20 lines
604 B
Plaintext
Vendored
20 lines
604 B
Plaintext
Vendored
package test
|
|
|
|
public open class PrivateMembersInHierarchy {
|
|
public constructor PrivateMembersInHierarchy()
|
|
|
|
public open class Sub : test.PrivateMembersInHierarchy.Super {
|
|
public constructor Sub()
|
|
private final var field: kotlin.Int
|
|
invisible_fake final override /*1*/ /*fake_override*/ var field2: kotlin.Int
|
|
private open fun method(): kotlin.Unit
|
|
}
|
|
|
|
public open class Super {
|
|
public constructor Super()
|
|
private final var field: kotlin.Int
|
|
private final var field2: kotlin.Int
|
|
private open fun method(): kotlin.Unit
|
|
}
|
|
}
|