blob: 9fb5b2161ba116d5b9a71e9db6cfbe95c42eb4e0 [file] [log] [blame]
class Parent {
private byte myInt;
public byte getInt() {
return myInt;
}
}
class Child extends Parent {
private byte myInt;
public byte getInt() {
return myInt;
}
}