mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
20 lines
328 B
Java
Vendored
20 lines
328 B
Java
Vendored
package test;
|
|
|
|
public class PrivateMembersInHierarchy {
|
|
public static class Super {
|
|
private int field = 1;
|
|
private int field2 = 1;
|
|
|
|
private void method() {
|
|
}
|
|
}
|
|
|
|
public static class Sub extends Super {
|
|
private int field = 1;
|
|
|
|
private void method() {
|
|
}
|
|
}
|
|
}
|
|
|